Skip to content

Commit 4c22a7d

Browse files
authored
Upgrade paramiko to avoid blowfish ciphers (#1149)
* Upgrade paramiko to avoid blowfish ciphers * Pin cryptography for python 3.6
1 parent 8922310 commit 4c22a7d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,9 @@ repos:
156156
hooks:
157157
- id: mypy
158158
additional_dependencies:
159-
- paramiko == 2.8.0
159+
- paramiko == 2.11.0
160160
- types-paramiko == 2.7.3
161+
- cryptography==36.0.2; python_version <= '3.6'
161162
- types-setuptools == 57.4.2
162163
args:
163164
# FIXME: get rid of missing imports ignore

requirements-tunnel.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
paramiko==2.10.3
1+
paramiko==2.11.0
22
types-paramiko==2.8.9
3+
cryptography==36.0.2; python_version <= '3.6'

0 commit comments

Comments
 (0)