Skip to content

Commit

Permalink
Release 1.7.5 housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
genzgd committed Apr 2, 2024
1 parent 0c44464 commit 908ab2d
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Python 3.9
- name: Setup Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: 3.11

- name: Upgrade Setuptools
run: pip install --upgrade setuptools wheel
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"

- name: Upgrade Setuptools
run: pip install --upgrade setuptools wheel
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/test_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ jobs:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
clickhouse-version:
- '23.3'
- '23.8'
- '23.9'
- '23.10'
- '24.1'
- '24.2'
- '24.3'
- latest

steps:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### Release [1.7.5], 2024-04-02
#### Bug Fixes
- Requirements and tests upgraded to include Python 3.12. Closes https://github.com/ClickHouse/dbt-clickhouse/issues/264
- Model settings were not working correctly for customer materializations. Thanks to original dbt-clickhouse [silentsokolov](https://github.com/silentsokolov)
for the PR!

### Release [1.7.4], 2024-03-23
#### Improvement
- Adds support for materializing ClickHouse dictionaries. Thanks to [Rory Sawyer](https://github.com/SoryRawyer) for the contribution!
Expand Down
8 changes: 4 additions & 4 deletions dev_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dbt-core~=1.7.3
clickhouse-connect>=0.6.22
clickhouse-driver>=0.2.6
dbt-core~=1.7.11
clickhouse-connect>=0.7.6
clickhouse-driver>=0.2.7
pytest>=7.2.0
pytest-dotenv==0.5.2
dbt-tests-adapter~=1.7.3
dbt-tests-adapter~=1.7.11
black==24.3.0
isort==5.10.1
mypy==0.991
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.black]
line-length = 100
skip-string-normalization = true
target-version = ['py310', 'py311']
target-version = ['py310', 'py311', 'py312']
exclude = '(\.eggs|\.git|\.mypy_cache|\.venv|venv|env|_build|build|build|dist|)'

[tool.isort]
Expand Down

0 comments on commit 908ab2d

Please sign in to comment.