diff options
author | Mukilan Thiyagarajan <me@mukilan.in> | 2023-05-05 15:19:47 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-05 15:19:47 +0530 |
commit | f9995f0b7938d3a3e87570e211be202445f431e4 (patch) | |
tree | b5b572767fc613ac036c42fec5e9cfc8c68ea1fb /python | |
parent | 121b2c987108aa7ccb5e2b3d1997b0d4d4c81d82 (diff) | |
download | servo-f9995f0b7938d3a3e87570e211be202445f431e4.tar.gz servo-f9995f0b7938d3a3e87570e211be202445f431e4.zip |
Upgrade boto3 python module.
The current version seem to be broken due to API change in one of the transitive dependency (urllib3) causing nightly builds to fail during package upload step with error:
```
ImportError: cannot import name 'DEFAULT_CIPHERS' from 'urllib3.util.ssl_' (C:\a\servo\servo\python\_virtualenv3.7\Lib\site-packages\urllib3\util\ssl_.py)
```
Diffstat (limited to 'python')
-rw-r--r-- | python/requirements.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/requirements.txt b/python/requirements.txt index 7df9b1978db..c151cb416bd 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -22,7 +22,7 @@ ply == 3.8 colorama == 0.3.7 # For package uploading -boto3 == 1.17.27 +boto3 == 1.26.127 PyGithub == 1.58.1 # Default root CAs on Windows CI do not trust CloudFront certificates, |