From 33198341e5272bc867f245c2e874c617301d5733 Mon Sep 17 00:00:00 2001 From: Alexander Millin Date: Tue, 18 Nov 2025 14:38:41 +0300 Subject: [PATCH 1/2] fix: update apache-airflow dependency range for Python 3.12 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1f478f8..0c05052 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ classifiers = [ dependencies = [ "apache-airflow>=2.8,<4.0; python_version<'3.12'", - "apache-airflow>=3.0,<4.0; python_version>='3.12' and python_version<'3.13'", + "apache-airflow>=2.9,<4.0; python_version>='3.12' and python_version<'3.13'", "apache-airflow>=3.1,<4.0; python_version>='3.13'", "contextlib-chdir==1.0.2;python_version<'3.11'", "dbt-core>=1.8.0,<2.0.0", From c1be43d6bb06129bc17ecc49481c8aa1f94f0154 Mon Sep 17 00:00:00 2001 From: Alexander Millin Date: Tue, 18 Nov 2025 14:39:15 +0300 Subject: [PATCH 2/2] chore: Version bump --- airflow_dbt_python/__version__.py | 2 +- pyproject.toml | 2 +- uv.lock | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/airflow_dbt_python/__version__.py b/airflow_dbt_python/__version__.py index 514122a..4d82155 100644 --- a/airflow_dbt_python/__version__.py +++ b/airflow_dbt_python/__version__.py @@ -3,4 +3,4 @@ __author__ = "Tomás Farías Santana" __copyright__ = "Copyright 2021 Tomás Farías Santana" __title__ = "airflow-dbt-python" -__version__ = "3.2.1" +__version__ = "3.2.2" diff --git a/pyproject.toml b/pyproject.toml index 0c05052..a96ecfb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "airflow-dbt-python" -version = "3.2.1" +version = "3.2.2" description = "A collection of Airflow operators, hooks, and utilities to execute dbt commands" authors = [{ name = "Tomás Farías Santana", email = "tomas@tomasfarias.dev" }] license = "MIT" diff --git a/uv.lock b/uv.lock index 790aa7f..0b2f6b1 100644 --- a/uv.lock +++ b/uv.lock @@ -190,7 +190,7 @@ wheels = [ [[package]] name = "airflow-dbt-python" -version = "3.2.1" +version = "3.2.2" source = { virtual = "." } dependencies = [ { name = "apache-airflow" }, @@ -270,7 +270,7 @@ docs = [ [package.metadata] requires-dist = [ { name = "apache-airflow", marker = "python_full_version < '3.12'", specifier = ">=2.8,<4.0" }, - { name = "apache-airflow", marker = "python_full_version == '3.12.*'", specifier = ">=3.0,<4.0" }, + { name = "apache-airflow", marker = "python_full_version == '3.12.*'", specifier = ">=2.9,<4.0" }, { name = "apache-airflow", marker = "python_full_version >= '3.13'", specifier = ">=3.1,<4.0" }, { name = "apache-airflow-providers-amazon", marker = "extra == 'airflow-providers'", specifier = ">=3.0.0" }, { name = "apache-airflow-providers-amazon", marker = "extra == 's3'", specifier = ">=3.0.0" },