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
2 changes: 1 addition & 1 deletion dev/breeze/tests/test_selective_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1321,7 +1321,7 @@ def test_excluded_providers():
{
"excluded-providers-as-string": json.dumps(
{
"3.13": ["apache.beam", "fab", "ydb"],
"3.13": ["apache.beam", "fab"],
}
),
},
Expand Down
12 changes: 6 additions & 6 deletions providers/ydb/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -97,15 +97,15 @@ Requirements

The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``.

========================================== =====================================
========================================== ==================
PIP package Version required
========================================== =====================================
========================================== ==================
``apache-airflow`` ``>=2.11.0``
``apache-airflow-providers-common-compat`` ``>=1.10.1``
``apache-airflow-providers-common-sql`` ``>=1.20.0; python_version < "3.13"``
``ydb`` ``>=3.18.8; python_version < "3.13"``
``ydb-dbapi`` ``>=0.1.0; python_version < "3.13"``
========================================== =====================================
``apache-airflow-providers-common-sql`` ``>=1.20.0``
``ydb`` ``>=3.18.8``
``ydb-dbapi`` ``>=0.1.0``
========================================== ==================

Cross provider package dependencies
-----------------------------------
Expand Down
3 changes: 0 additions & 3 deletions providers/ydb/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ versions:
- 1.1.0
- 1.0.0

excluded-python-versions:
- "3.13"

integrations:
- integration-name: YDB
external-doc-url: https://ydb.tech/docs/en/
Expand Down
9 changes: 5 additions & 4 deletions providers/ydb/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,10 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Monitoring",
]
requires-python = ">=3.10,!=3.13"
requires-python = ">=3.10"

# The dependencies should be modified in place in the generated file.
# Any change in the dependencies is preserved when the file is regenerated
Expand All @@ -59,9 +60,9 @@ requires-python = ">=3.10,!=3.13"
dependencies = [
"apache-airflow>=2.11.0",
"apache-airflow-providers-common-compat>=1.10.1",
"apache-airflow-providers-common-sql>=1.20.0; python_version < '3.13'",
"ydb>=3.18.8; python_version < '3.13'",
"ydb-dbapi>=0.1.0; python_version < '3.13'",
"apache-airflow-providers-common-sql>=1.20.0",
"ydb>=3.18.8",
"ydb-dbapi>=0.1.0",
]

[dependency-groups]
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ packages = []
"apache-airflow-providers-yandex>=4.0.0"
]
"ydb" = [
"apache-airflow-providers-ydb>=1.4.0; python_version !=\"3.13\""
"apache-airflow-providers-ydb>=1.4.0"
]
"zendesk" = [
"apache-airflow-providers-zendesk>=4.9.0"
Expand Down Expand Up @@ -485,7 +485,7 @@ packages = []
"apache-airflow-providers-vertica>=3.9.1",
"apache-airflow-providers-weaviate>=3.0.0",
"apache-airflow-providers-yandex>=4.0.0",
"apache-airflow-providers-ydb>=1.4.0; python_version !=\"3.13\"",
"apache-airflow-providers-ydb>=1.4.0",
"apache-airflow-providers-zendesk>=4.9.0",
]
# End of automatically generated airflow optional dependencies
Expand Down
Loading