Skip to content

Update python dependency#1067

Open
xuexu6666 wants to merge 1 commit intoAzure:mainfrom
xuexu6666:xuexu6666/updateDependency
Open

Update python dependency#1067
xuexu6666 wants to merge 1 commit intoAzure:mainfrom
xuexu6666:xuexu6666/updateDependency

Conversation

@xuexu6666
Copy link
Contributor

No description provided.

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Updates the Python dependency set used by Telescope’s Python modules (and installed in CI/jumpbox execution) to include explicit TLS/crypto libraries.

Changes:

  • Add pyOpenSSL as a direct dependency.
  • Add an explicit version range constraint for cryptography.
  • Re-align requirements.txt line formatting in the diff (no functional change beyond dependency additions).

Comment on lines +15 to +16
pyOpenSSL>=23.2.0
cryptography>=42,<43 No newline at end of file
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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants