diff options
author | Shreyas Kalyan <shreyaskalyan@gmail.com> | 2018-10-09 14:40:30 -0400 |
---|---|---|
committer | Shreyas Kalyan <shreyaskalyan@gmail.com> | 2018-10-12 10:36:32 -0400 |
commit | 1b5f4ac035e2334417cb501e37eec14aea709eb7 (patch) | |
tree | 41d0321c90b623b38f4b4272c6a6565fede8f187 /etc/pip | |
parent | 8e638c938ed3c17d090a85de8b35676af31f8db5 (diff) | |
download | mongo-1b5f4ac035e2334417cb501e37eec14aea709eb7.tar.gz |
SERVER-37529 Fix issues for ssl_ECDHE_suites.js on non x86 evergreen machines
Diffstat (limited to 'etc/pip')
-rw-r--r-- | etc/pip/components/platform.req | 4 | ||||
-rw-r--r-- | etc/pip/constraints.txt | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/etc/pip/components/platform.req b/etc/pip/components/platform.req index 1db74332876..324995955fa 100644 --- a/etc/pip/components/platform.req +++ b/etc/pip/components/platform.req @@ -3,4 +3,6 @@ pypiwin32==219; sys_platform == "win32" and python_version < "3" pypiwin32==223; sys_platform == "win32" and python_version > "3" subprocess32==3.5.2; os_name == "posix" and platform_release != "2.6.18-194.el5xen" and platform_release != "2.6.18-274.el5xen" and python_version < "3" # Needed for ssl_ECDHE_suites.js test - testing the TLS suites enabled on each platform -sslyze==2.0.1; python_version >= "3.6" and sys_platform != "darwin" +sslyze==2.0.1; python_version >= "3.6" and sys_platform == "win32" and (platform_machine == "x86_64" or platform_machine == "AMD64") +sslyze==2.0.1; python_version >= "3.6" and sys_platform == "cygwin" and (platform_machine == "x86_64" or platform_machine == "AMD64") +sslyze==2.0.1; python_version >= "3.6" and sys_platform == "linux" and (platform_machine == "x86_64" or platform_machine == "i686") diff --git a/etc/pip/constraints.txt b/etc/pip/constraints.txt index 7748510c3a1..8176b262b8a 100644 --- a/etc/pip/constraints.txt +++ b/etc/pip/constraints.txt @@ -6,8 +6,8 @@ # Common requirements asn1crypto==0.24.0 -boto3==1.9.16 -botocore==1.12.16 +boto3==1.9.21 +botocore==1.12.21 certifi==2018.8.24 cffi==1.11.5 chardet==3.0.4 @@ -69,4 +69,6 @@ pypiwin32==219; sys_platform == "win32" and python_version < "3" pypiwin32==223; sys_platform == "win32" and python_version > "3" subprocess32==3.5.2; os_name == "posix" and platform_release != "2.6.18-194.el5xen" and platform_release != "2.6.18-274.el5xen" and python_version < "3" # Needed for ssl_ECDHE_suites.js test - testing the TLS suites enabled on each platform -sslyze==2.0.1; python_version >= "3.6" and sys_platform != "darwin" +sslyze==2.0.1; python_version >= "3.6" and sys_platform == "win32" and (platform_machine == "x86_64" or platform_machine == "AMD64") +sslyze==2.0.1; python_version >= "3.6" and sys_platform == "cygwin" and (platform_machine == "x86_64" or platform_machine == "AMD64") +sslyze==2.0.1; python_version >= "3.6" and sys_platform == "linux" and (platform_machine == "x86_64" or platform_machine == "i686") |