diff options
author | Felipe Ruhland <felipe.ruhland@gmail.com> | 2021-04-02 02:30:22 +0200 |
---|---|---|
committer | Felipe Ruhland <felipe.ruhland@gmail.com> | 2021-04-02 02:51:20 +0200 |
commit | 2403774e76b279ecdd7238d35f04def6fb1ca8b8 (patch) | |
tree | 29cec1feee647e039ad85d45425aedb74139f499 /setup.py | |
parent | a60bd9a4548dbf8174dd2abbc426066358d434cc (diff) | |
download | docker-py-2403774e76b279ecdd7238d35f04def6fb1ca8b8.tar.gz |
Upgrade cryptography library to version 3.4.7
Dependabot opened a pull request
93bcc0497d8302aa2d78bd7ef756fc2ff3fd0912 to upgrade cryptography from
2.3 to 3.2.
However, only `requirements.txt` was updated.
The extra requirements were kept outdated.
This commit was made to update the library to the last version.
Fix #2791
Signed-off-by: Felipe Ruhland <felipe.ruhland@gmail.com>
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ extras_require = { # https://github.com/pypa/pip/issues/4391). Once that's fixed, instead of # installing the extra dependencies, install the following instead: # 'requests[security] >= 2.5.2, != 2.11.0, != 2.12.2' - 'tls': ['pyOpenSSL>=17.5.0', 'cryptography>=1.3.4', 'idna>=2.0.0'], + 'tls': ['pyOpenSSL>=17.5.0', 'cryptography>=3.4.7', 'idna>=2.0.0'], # Only required when connecting using the ssh:// protocol 'ssh': ['paramiko>=2.4.2'], |