This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new b8a83b2293 Workaround new yandexcloud breaking dataproc integration
(#39964)
b8a83b2293 is described below
commit b8a83b2293f16523b40fab6035fed5f5431076af
Author: Jarek Potiuk <[email protected]>
AuthorDate: Fri May 31 08:11:46 2024 +0200
Workaround new yandexcloud breaking dataproc integration (#39964)
The new yandexcloud 0.289.0 breaks compatibility and our tests
See https://github.com/yandex-cloud/python-sdk/issues/103
---
airflow/providers/yandex/provider.yaml | 4 +++-
generated/provider_dependencies.json | 2 +-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/airflow/providers/yandex/provider.yaml
b/airflow/providers/yandex/provider.yaml
index 9c5a104e2c..eb49ee0513 100644
--- a/airflow/providers/yandex/provider.yaml
+++ b/airflow/providers/yandex/provider.yaml
@@ -51,7 +51,9 @@ versions:
dependencies:
- apache-airflow>=2.7.0
- - yandexcloud>=0.278.0
+ # yandexclod 0.289.0 breaks compatibility for dataproc integration
+ # See https://github.com/yandex-cloud/python-sdk/issues/103
+ - yandexcloud>=0.278.0,<0.289.0
- yandex-query-client>=0.1.4
integrations:
diff --git a/generated/provider_dependencies.json
b/generated/provider_dependencies.json
index 01c1e33785..c7d0992a44 100644
--- a/generated/provider_dependencies.json
+++ b/generated/provider_dependencies.json
@@ -1299,7 +1299,7 @@
"deps": [
"apache-airflow>=2.7.0",
"yandex-query-client>=0.1.4",
- "yandexcloud>=0.278.0"
+ "yandexcloud>=0.278.0,<0.289.0"
],
"devel-deps": [],
"plugins": [],