Skip to content

Commit

Permalink
Initial dependency updates for 1.7.x
Browse files Browse the repository at this point in the history
  • Loading branch information
genzgd committed Dec 7, 2023
1 parent e6e74e4 commit 223f1e6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
### Release [1.7.0], TBD

### Release [1.6.2], 2023-12-06
#### Bug Fix
- The dbt `on_schema_change` configuration value for incremental models was effectively being ignored. This has been fixed
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/clickhouse/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '1.6.2'
version = '1.7.0'
6 changes: 3 additions & 3 deletions dev_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dbt-core~=1.6.9
clickhouse-connect>=0.6.21
dbt-core~=1.7.3
clickhouse-connect>=0.6.22
clickhouse-driver>=0.2.6
pytest>=7.2.0
pytest-dotenv==0.5.2
dbt-tests-adapter~=1.6.9
dbt-tests-adapter~=1.7.3
black==23.11.0
isort==5.10.1
mypy==0.991
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def _dbt_clickhouse_version():
package_version = _dbt_clickhouse_version()
description = '''The Clickhouse plugin for dbt (data build tool)'''

dbt_version = '1.6.0'
dbt_version = '1.7.0'
dbt_minor = '.'.join(dbt_version.split('.')[0:2])

if not package_version.startswith(dbt_minor):
Expand Down Expand Up @@ -55,7 +55,7 @@ def _dbt_clickhouse_version():
},
install_requires=[
f'dbt-core~={dbt_version}',
'clickhouse-connect>=0.6.21',
'clickhouse-connect>=0.6.22',
'clickhouse-driver>=0.2.6',
],
python_requires=">=3.8",
Expand All @@ -70,5 +70,6 @@ def _dbt_clickhouse_version():
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)

0 comments on commit 223f1e6

Please sign in to comment.