Skip to content

PYTHON-2907 Fix up requirements files #734

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 17, 2021
Merged
Show file tree
Hide file tree
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
7 changes: 7 additions & 0 deletions .evergreen/test-cryptography-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# cffi==1.14.3 was the last installable release on RHEL 6.2 with Python 3.4
cffi==1.14.3;python_version=="3.4"
cffi>=1.12.0,<2;python_version!="3.4"
cryptography>=2,<3.4;python_version=="2.7"
cryptography>=2,<2.9;python_version=="3.4"
cryptography>=2,<3.3;python_version=="3.5"
cryptography>=2;python_version>"3.5"
8 changes: 1 addition & 7 deletions .evergreen/test-encryption-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
# cffi==1.14.3 was the last installable release on RHEL 6.2 with Python 3.4
cffi==1.14.3;python_version=="3.4"
cffi>=1.12.0,<2;python_version!="3.4"
cryptography>=2,<3.4;python_version=="2.7"
cryptography>=2,<2.9;python_version=="3.4"
cryptography>=2,<3.3;python_version=="3.5"
cryptography>=2;python_version>"3.5"
-r test-cryptography-requirements.txt
# boto3 is required by drivers-evergreen-tools/.evergreen/csfle/set-temp-creds.sh
boto3<2
2 changes: 1 addition & 1 deletion .evergreen/test-pyopenssl-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-r test-encryption-requirements.txt
-r test-cryptography-requirements.txt
pyopenssl>=17.2.0,<20;python_version=="3.4"
pyopenssl>=17.2.0;python_version!="3.4"
attrs<=20.3.0;python_version=="3.4"
Expand Down