This is an automated email from the ASF dual-hosted git repository.
ash pushed a commit to branch v3-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-0-test by this push:
new 03553ec4ee0 [v3-0-test] Restrict typing-paramiko to < 4 as we do with
paramiko (#54173) (#54179)
03553ec4ee0 is described below
commit 03553ec4ee0f3651c250444c9607d6646a1e0f6b
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Aug 6 13:27:46 2025 +0100
[v3-0-test] Restrict typing-paramiko to < 4 as we do with paramiko (#54173)
(#54179)
(cherry picked from commit 8bbc121)
Co-authored-by: Amogh Desai <[email protected]>
---
devel-common/pyproject.toml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/devel-common/pyproject.toml b/devel-common/pyproject.toml
index d8f69f320e8..e538a27fc55 100644
--- a/devel-common/pyproject.toml
+++ b/devel-common/pyproject.toml
@@ -112,7 +112,8 @@ dependencies = [
"types-certifi>=2021.10.8.3",
"types-croniter>=2.0.0.20240423",
"types-docutils>=0.21.0.20240704",
- "types-paramiko>=3.4.0.20240423",
+ # TODO: Bump to >= 4.0.0 once
https://github.com/apache/airflow/issues/54079
+ "types-paramiko>=3.4.0.20240423,<4.0.0",
"types-protobuf>=5.26.0.20240422",
"types-python-dateutil>=2.9.0.20240316",
"types-python-slugify>=8.0.2.20240310",