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
4 changes: 3 additions & 1 deletion modules/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ botocore==1.36.5
coverage==7.6.12
semver==3.0.4
requests==2.32.4
pyyaml==6.0.2
pyyaml==6.0.2
pyOpenSSL>=23.2.0
cryptography>=42,<43
Comment on lines +15 to +16
Copy link

Copilot AI Feb 17, 2026

Choose a reason for hiding this comment

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

requirements.txt otherwise pins exact versions with ==, but these two new dependencies use open-ended constraints (>= / range). This can make CI/jumpbox installs non-reproducible over time and can introduce unexpected breakages when new releases satisfy the range. Consider pinning exact versions (and bump intentionally), or introduce a dedicated constraints/lock approach if ranges are required.

Suggested change
pyOpenSSL>=23.2.0
cryptography>=42,<43
pyOpenSSL==23.2.0
cryptography==42.0.0

Copilot uses AI. Check for mistakes.
Copy link
Contributor

@lokesh-keyan lokesh-keyan Feb 18, 2026

Choose a reason for hiding this comment

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

@xuexu6666 I was able to make it work just by adding pyopenssl>=24.0.0 alone

open PR: #1069

Loading