You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the tests with paramiko < 3.2 installed, the test TestSSHUserConfig.test_missing_hostkey fails due to missing PKey method from_type_string:
According to paramiko docs this method was only added in paramiko 3.2, but the required paramiko version is >= 2.7 in setup.py.
To Reproduce
I stumbled upon this while trying to update the FreeBSD port, where paramiko is at version 2.11 currently. The failing test should be reproducible in any environment with paramiko < 3.2 though.
The text was updated successfully, but these errors were encountered:
Describe the bug
When running the tests with paramiko < 3.2 installed, the test TestSSHUserConfig.test_missing_hostkey fails due to missing
PKey
methodfrom_type_string
:According to paramiko docs this method was only added in paramiko 3.2, but the required paramiko version is >= 2.7 in
setup.py
.To Reproduce
I stumbled upon this while trying to update the FreeBSD port, where paramiko is at version 2.11 currently. The failing test should be reproducible in any environment with paramiko < 3.2 though.
The text was updated successfully, but these errors were encountered: