Skip to content

Commit

Permalink
temporarily fix the urllib3 2.0.0 incompatible with openssl (#2662)
Browse files Browse the repository at this point in the history
The error is
```
ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' 
module is compiled with OpenSSL 1.0.2k-fips  26 Jan 2017. See: 
urllib3/urllib3#2168
```

urllib3 release 2.0.0 today and dropped support for openssl < 1.1.1,
whereas out centos7 bundled openssl library is 1.0.2k.

This restraints could be dropped when our image base has been switch to
ubuntu #2607
  • Loading branch information
siyuan0322 committed Apr 27, 2023
1 parent 57dba68 commit 2559333
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions coordinator/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ prometheus-client>=0.14.1
setuptools==65.7.0
packaging
tqdm
urllib3>=1.24.2,<2.0.0

0 comments on commit 2559333

Please sign in to comment.