Skip to content

Commit

Permalink
Disallow paramiko 2.9.0 and 2.9.1
Browse files Browse the repository at this point in the history
Fix `paramiko.ssh_exception.SSHException: encountered RSA key, expected OPENSSH key`
error, which is due to paramiko/paramiko#1961 .
  • Loading branch information
nsoranzo committed Jan 6, 2022
1 parent a70abfb commit 0aeb569
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/galaxy/dependencies/dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ oauthlib==3.1.1; python_version >= "3.6" and python_full_version < "3.0.0" or py
outcome==1.1.0; python_version >= "3.7" and python_version < "4.0"
oyaml==1.0
packaging==21.3; python_version >= "3.7" and python_full_version < "3.0.0" or python_full_version >= "3.4.0" and python_version >= "3.7"
paramiko==2.9.1
paramiko==2.8.1
parsley==1.3
paste==3.5.0
pastedeploy==2.1.1
Expand Down
2 changes: 1 addition & 1 deletion lib/galaxy/dependencies/pinned-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ numpy==1.21.1; python_version >= "3.7"
oauthlib==3.1.1; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.4.0" and python_version >= "3.6"
oyaml==1.0
packaging==21.3; python_version >= "3.6"
paramiko==2.9.1
paramiko==2.8.1
parsley==1.3
paste==3.5.0
pastedeploy==2.1.1
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ mrcfile = "*"
nodeenv = "*"
nose = "*"
numpy = "*"
paramiko = "*"
paramiko = "!=2.9.0, !=2.9.1" # https://github.com/paramiko/paramiko/issues/1961
Parsley = "*"
Paste = "*"
psutil = "*"
Expand Down

0 comments on commit 0aeb569

Please sign in to comment.