Skip to content

Commit

Permalink
Merge pull request #73 from bobelev/update-2.8.0
Browse files Browse the repository at this point in the history
support Airflow 2.8.0
  • Loading branch information
bryzgaloff authored Jan 30, 2024
2 parents 72bbc07 + 770df02 commit d3404cf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 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"]
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-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"]
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-extras: ["", "[common.sql]"]
exclude:
# constraints files for these combinations are missing
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
tests-pattern: "-p test_clickhouse.py"
services:
clickhouse:
image: yandex/clickhouse-server
image: clickhouse/clickhouse-server
ports:
- 9000/tcp
steps:
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.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 |
| 0.11.0 | ~=2.0.0,\>=2.2.0,<2.7.0 | ~=3.7 |
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.1.0"
version = "1.2.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.8.0",
"apache-airflow[common.sql]>=2.2.0,<2.9.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.8.0
apache-airflow>=2.0.0,<2.9.0

0 comments on commit d3404cf

Please sign in to comment.