Skip to content

Commit

Permalink
Update test and dependency versions. (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
genzgd authored Nov 23, 2023
1 parent 9edb554 commit 5e8e54b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

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

- name: Install requirements
run: pip3 install -r dev_requirements.txt
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ jobs:
- '3.10'
- '3.11'
clickhouse-version:
- '23.3'
- '23.3'
- '23.8'
- '23.9'
- '23.10'
- latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### Release [1.5.0], TBD
### Release [1.5.0], 2023-11-23
#### Improvements
- Compatible with dbt 1.5.x
- Contract support (using exact column data types)
Expand Down
4 changes: 2 additions & 2 deletions dev_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dbt-core~=1.5.8
clickhouse-connect>=0.6.18
clickhouse-driver>=0.2.3
clickhouse-connect>=0.6.21
clickhouse-driver>=0.2.6
pytest>=7.2.0
pytest-dotenv==0.5.2
dbt-tests-adapter~=1.5.8
Expand Down
7 changes: 3 additions & 4 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.4.0'
dbt_version = '1.5.0'
dbt_minor = '.'.join(dbt_version.split('.')[0:2])

if not package_version.startswith(dbt_minor):
Expand Down Expand Up @@ -55,8 +55,8 @@ def _dbt_clickhouse_version():
},
install_requires=[
f'dbt-core~={dbt_version}',
'clickhouse-connect>=0.5.24',
'clickhouse-driver>=0.2.3',
'clickhouse-connect>=0.6.21',
'clickhouse-driver>=0.2.6',
],
python_requires=">=3.7",
platforms='any',
Expand All @@ -66,7 +66,6 @@ def _dbt_clickhouse_version():
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand Down

0 comments on commit 5e8e54b

Please sign in to comment.