fix(google-auth): raise minimum pyopenssl version to 23.2.0#17593
fix(google-auth): raise minimum pyopenssl version to 23.2.0#17593ohmayr wants to merge 17 commits into
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the minimum required version of pyopenssl to 23.2.0 in setup.py and introduces a new constraints file for Python 3.14. The review feedback correctly identifies a dependency resolution conflict in the new constraints file, where pyopenssl 23.2.0 requires cryptography >= 41.0.1, but cryptography is currently pinned to 38.0.3. It is recommended to update the cryptography version to avoid installation failures.
| # are correct in setup.py for Python 3.14 | ||
| pyasn1-modules==0.2.1 | ||
| setuptools==40.3.0 | ||
| cryptography==38.0.3 |
There was a problem hiding this comment.
The minimum version of pyopenssl has been raised to 23.2.0. However, pyopenssl 23.2.0 requires cryptography >= 41.0.1. Keeping cryptography==38.0.3 in this constraints file will cause a dependency resolution conflict during installation. Please update the cryptography version to 41.0.1 or higher to ensure compatibility.
cryptography==41.0.1
No description provided.