Skip to content

Commit 18d75db

Browse files
authored
Limit paramiko to < 4.0.0 till we remove DSS support (#54078)
1 parent 7c4d27e commit 18d75db

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

providers/sftp/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ requires-python = ">=3.10"
5959
dependencies = [
6060
"apache-airflow>=2.10.0",
6161
"apache-airflow-providers-ssh>=4.0.0",
62-
"paramiko>=2.9.0",
62+
# TODO: Bump to >= 4.0.0 once https://github.com/apache/airflow/issues/54079 is handled
63+
"paramiko>=2.9.0,<4.0.0",
6364
"asyncssh>=2.12.0",
6465
]
6566

providers/ssh/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ requires-python = ">=3.10"
5858
# After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build``
5959
dependencies = [
6060
"apache-airflow>=2.10.0",
61-
"paramiko>=2.9.0",
61+
# TODO: Bump to >= 4.0.0 once https://github.com/apache/airflow/issues/54079 is handled
62+
"paramiko>=2.9.0,<4.0.0",
6263
"sshtunnel>=0.3.2",
6364
]
6465

0 commit comments

Comments
 (0)