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
On 13. of december, asyncssh released a new version "2.19.0" that is incompatible with the current version of sshfs "2024.9.0".
On dvc pull, I get following exception:
TypeError: __init__() missing 2 required positional arguments: 'host' and 'port'
The reason for this exception is that SSHClientConfig of asyncssh now requires two more arguments that sshfs does not provide.
Fix
Restrict the asyncssh version to a compatible one:
asyncssh<=2.18.0
The text was updated successfully, but these errors were encountered:
On 13. of december, asyncssh released a new version "2.19.0" that is incompatible with the current version of sshfs "2024.9.0".
On dvc pull, I get following exception:
The reason for this exception is that
SSHClientConfig
ofasyncssh
now requires two more arguments thatsshfs
does not provide.Fix
Restrict the asyncssh version to a compatible one:
The text was updated successfully, but these errors were encountered: