Skip to content

SK-2850: Public Release - loosen transitive dependency version constraints#257

Merged
Devesh-Skyflow merged 2 commits into
mainfrom
release/26.5.4
May 27, 2026
Merged

SK-2850: Public Release - loosen transitive dependency version constraints#257
Devesh-Skyflow merged 2 commits into
mainfrom
release/26.5.4

Conversation

@saileshwar-skyflow
Copy link
Copy Markdown
Collaborator

Summary

Loosened three dependency pins in setup.py and requirements.txt to resolve installation conflicts reported by customers whose projects require newer versions of these packages.

Package Before After
PyJWT ~=2.9.0 >=2.9,<3
python-dotenv ~=1.0.1 >=1.0,<2
urllib3 >=1.25.3,<=2.6.3 >=1.25.3,<3

Why

Customers using PyJWT>=2.12 (CVE-2026-32597 fix), python-dotenv>=1.1, or urllib3>=2.7 were hit with ResolutionImpossible errors when trying to install the SDK alongside those versions. The tight ~= pins blocked the entire minor version range.

Verified

  • pip install skyflow==2.0.0 PyJWT==2.12.0 python-dotenv==1.1.0 urllib3==2.7.0ERROR: ResolutionImpossible (before)
  • pip install skyflow-2.1.0.whl PyJWT==2.12.0 python-dotenv==1.1.0 urllib3==2.7.0Successfully installed (after)
  • All 615 unit tests pass

@Devesh-Skyflow Devesh-Skyflow merged commit aeeebb5 into main May 27, 2026
8 checks passed
Copy link
Copy Markdown
Collaborator

@Devesh-Skyflow Devesh-Skyflow left a comment

Choose a reason for hiding this comment

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

Approved

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.

2 participants