Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ lxml>=5.3.0

# For algorithm extraction from certificate pages
crawl4ai>=0.4.0
pyopenssl>=26.0.0 # not directly required, pinned by Snyk to avoid a vulnerability
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For better reproducibility and to prevent accidental upgrades to potentially incompatible versions, it's recommended to pin dependencies to an exact version using == instead of >=. This ensures that the same version of the package is used across all environments.

Additionally, the comment # not directly required can be confusing since pyopenssl is a transitive dependency of crawl4ai. The suggested comment is more accurate.

pyopenssl==26.0.0 # Pinned by Snyk to fix a vulnerability in a transitive dependency