We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f8012e commit ba125b3Copy full SHA for ba125b3
2 files changed
airflow/providers/docker/provider.yaml
@@ -67,6 +67,10 @@ dependencies:
67
- apache-airflow>=2.6.0
68
- docker>=6
69
- python-dotenv>=0.21.0
70
+ # requests 2.32.0 has an incompatibility with python lib docker
71
+ # https://github.com/psf/requests/issues/6707 and https://github.com/docker/docker-py/issues/3256
72
+ # once resolved remove this dependency
73
+ - requests>=2.27.0,<2.32.0
74
75
integrations:
76
- integration-name: Docker
generated/provider_dependencies.json
@@ -432,7 +432,8 @@
432
"deps": [
433
"apache-airflow>=2.6.0",
434
"docker>=6",
435
- "python-dotenv>=0.21.0"
+ "python-dotenv>=0.21.0",
436
+ "requests>=2.27.0,<2.32.0"
437
],
438
"devel-deps": [],
439
"cross-providers-deps": [],
0 commit comments