Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions providers/amazon/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ PIP package Version required
``watchtower`` ``>=3.3.1,<4``
``jsonpath_ng`` ``>=1.5.3``
``redshift_connector`` ``>=2.1.3``
``redshift_connector`` ``>=2.1.13; python_version >= "3.14"``
``asgiref`` ``>=2.3.0; python_version < "3.14"``
``asgiref`` ``>=3.11.1; python_version >= "3.14"``
``PyAthena`` ``>=3.10.0``
Expand Down
1 change: 1 addition & 0 deletions providers/amazon/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ dependencies = [
"watchtower>=3.3.1,<4",
"jsonpath_ng>=1.5.3",
"redshift_connector>=2.1.3",
"redshift_connector>=2.1.13; python_version >= '3.14'",
"asgiref>=2.3.0; python_version < '3.14'",
"asgiref>=3.11.1; python_version >= '3.14'",
"PyAthena>=3.10.0",
Expand Down
4 changes: 3 additions & 1 deletion providers/yandex/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,13 @@ The minimum Apache Airflow version supported by this provider distribution is ``
PIP package Version required
========================================== =======================================
``apache-airflow`` ``>=2.11.0``
``yandexcloud`` ``>=0.383.0; python_version >= "3.14"``
``yandexcloud`` ``>=0.376.0; python_version >= "3.13"``
``yandexcloud`` ``>=0.328.0; python_version < "3.13"``
``yandex-query-client`` ``>=0.1.4``
``apache-airflow-providers-common-compat`` ``>=1.13.0``
``grpcio`` ``>=1.70.0``
``grpcio`` ``>=1.70.0; python_version < "3.14"``
``grpcio`` ``>=1.78.0; python_version >= "3.14"``
========================================== =======================================

Cross provider package dependencies
Expand Down
5 changes: 3 additions & 2 deletions providers/yandex/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ requires-python = ">=3.10"
# After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build``
dependencies = [
"apache-airflow>=2.11.0",
'yandexcloud>=0.383.0; python_version >= "3.14"',
'yandexcloud>=0.376.0; python_version >= "3.13"',
'yandexcloud>=0.328.0; python_version < "3.13"',
"yandex-query-client>=0.1.4",
Expand All @@ -68,7 +69,8 @@ dependencies = [
# ERROR providers/yandex/tests/unit/yandex/operators/test_dataproc.py - RuntimeError: The grpc package installed is at version 1.68.1, but the generated code in yandex/cloud/endpoint/api_endpoint_service_pb2_grpc.py depends on grpcio>=1.70.0. Please upgrade your grpc module to grpcio>=1.70.0 or downgrade your generated code using grpcio-tools<=1.68.1.
# this dependency can be removed when yandexcloud bump min version of grpcio to 1.70
# https://github.com/yandex-cloud/python-sdk/blob/82493e32bbf1d678afbb8376632b3f5b5923fd10/pyproject.toml#L23
"grpcio>=1.70.0",
'grpcio>=1.70.0; python_version < "3.14"',
'grpcio>=1.78.0; python_version >= "3.14"',
]

[dependency-groups]
Expand All @@ -79,7 +81,6 @@ dev = [
"apache-airflow-providers-common-compat",
# Additional devel dependencies (do not remove this line and add extra development dependencies)
"responses>=0.25.0",

]

# To build docs:
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1347,7 +1347,6 @@ required-version = ">=0.9.17"
# Synchroonize with scripts/ci/prek/upgrade_important_versions.py
exclude-newer = "4 days"
no-build-isolation-package = ["sphinx-redoc"]
constraint-dependencies = ["lxml==6.0.2"] # Remove after https://github.com/aws/amazon-redshift-python-driver/pull/272

[tool.uv.sources]
# These names must match the names as defined in the pyproject.toml of the workspace items,
Expand Down
Loading
Loading