Skip to content

Commit 3b0284e

Browse files
committed
support airflow 2.9.0
1 parent c7426a1 commit 3b0284e

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
matrix:
3030
python-version: ["3.8", "3.9", "3.10", "3.11"]
31-
airflow-version: ["2.0.2", "2.1.4", "2.2.5", "2.3.4", "2.4.3", "2.5.3", "2.6.3", "2.7.1", "2.8.1"]
31+
airflow-version: ["2.0.2", "2.1.4", "2.2.5", "2.3.4", "2.4.3", "2.5.3", "2.6.3", "2.7.1", "2.8.1", "2.9.0"]
3232
airflow-extras: ["", "[common.sql]"]
3333
exclude:
3434
# constraints files for these combinations are missing
@@ -90,7 +90,7 @@ jobs:
9090
strategy:
9191
matrix:
9292
python-version: ["3.8", "3.9", "3.10", "3.11"]
93-
airflow-version: ["2.0.2", "2.1.4", "2.2.5", "2.3.4", "2.4.3", "2.5.3", "2.6.3", "2.7.1", "2.8.1"]
93+
airflow-version: ["2.0.2", "2.1.4", "2.2.5", "2.3.4", "2.4.3", "2.5.3", "2.6.3", "2.7.1", "2.8.1", "2.9.0"]
9494
airflow-extras: ["", "[common.sql]"]
9595
exclude:
9696
# constraints files for these combinations are missing

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ Different versions of the plugin support different combinations of Python and Ai
6666

6767
| airflow-clickhouse-plugin version | Airflow version | Python version |
6868
|-----------------------------------|-------------------------|--------------------|
69+
| 1.3.0 | \>=2.0.0,<2.9.0 | ~=3.8 |
6970
| 1.2.0 | \>=2.0.0,<2.9.0 | ~=3.8 |
7071
| 1.1.0 | \>=2.0.0,<2.8.0 | ~=3.8 |
7172
| 1.0.0 | \>=2.0.0,<2.7.0 | ~=3.8 |

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "airflow-clickhouse-plugin"
9-
version = "1.2.0"
9+
version = "1.3.0"
1010
description = "airflow-clickhouse-plugin — Airflow plugin to execute ClickHouse commands and queries"
1111
readme = "README.md"
1212
requires-python = ">=3.8"
@@ -39,7 +39,7 @@ Issues = "https://github.com/bryzgaloff/airflow-clickhouse-plugin/issues"
3939

4040
[project.optional-dependencies]
4141
"common.sql" = [
42-
"apache-airflow[common.sql]>=2.2.0,<2.9.0",
42+
"apache-airflow[common.sql]>=2.2.0,<2.10.0",
4343
"apache-airflow-providers-common-sql>=1.3.0", # introduces SQLExecuteQueryOperator
4444
"clickhouse-driver>=0.2.1",
4545
]

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
clickhouse-driver~=0.2.0
2-
apache-airflow>=2.0.0,<2.9.0
2+
apache-airflow>=2.0.0,<2.10.0

0 commit comments

Comments
 (0)