Skip to content

Commit

Permalink
Support airflow 2.9.0 (#79)
Browse files Browse the repository at this point in the history
* support airflow 2.9.0

* Update README.md

---------

Co-authored-by: Anton Bryzgalov <[email protected]>
  • Loading branch information
epikhinm and bryzgaloff authored Apr 14, 2024
1 parent c7426a1 commit 2cfaf43
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
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"]
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"]
airflow-extras: ["", "[common.sql]"]
exclude:
# constraints files for these combinations are missing
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
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"]
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"]
airflow-extras: ["", "[common.sql]"]
exclude:
# constraints files for these combinations are missing
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ Different versions of the plugin support different combinations of Python and Ai

| airflow-clickhouse-plugin version | Airflow version | Python version |
|-----------------------------------|-------------------------|--------------------|
| 1.3.0 | \>=2.0.0,<2.10.0 | ~=3.8 |
| 1.2.0 | \>=2.0.0,<2.9.0 | ~=3.8 |
| 1.1.0 | \>=2.0.0,<2.8.0 | ~=3.8 |
| 1.0.0 | \>=2.0.0,<2.7.0 | ~=3.8 |
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

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

[project.optional-dependencies]
"common.sql" = [
"apache-airflow[common.sql]>=2.2.0,<2.9.0",
"apache-airflow[common.sql]>=2.2.0,<2.10.0",
"apache-airflow-providers-common-sql>=1.3.0", # introduces SQLExecuteQueryOperator
"clickhouse-driver>=0.2.1",
]
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
clickhouse-driver~=0.2.0
apache-airflow>=2.0.0,<2.9.0
apache-airflow>=2.0.0,<2.10.0

0 comments on commit 2cfaf43

Please sign in to comment.