Skip to content

Commit fdfb737

Browse files
authored
DBT-806 Fix-1.9.0-impala Support dbt-core 1.9.0 for dbt-impala (#212)
1 parent 1c2ec40 commit fdfb737

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ The `dbt-impala` adapter allows you to use [dbt](https://www.getdbt.com/) along
1111

1212
### Requirements
1313

14-
Current version of dbt-impala uses dbt-core 1.8.*. We are actively working on supporting the next available version of dbt-core.
14+
Current version of dbt-impala uses dbt-core 1.9.*. We are actively working on supporting the next available version of dbt-core.
1515

16-
Python >= 3.7
17-
dbt-core == 1.8.*
16+
Python >= 3.9
17+
dbt-core == 1.9.*
1818

1919
For development/testing or contribution to the dbt-impala, please follow [Contributing](CONTRIBUTING.md) guidelines.
2020

dbt/adapters/impala/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
version = "1.8.0"
15+
version = "1.9.0"

dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dbt-tests-adapter==1.8.*
1+
dbt-tests-adapter==1.9.*
22
pre-commit~=2.21;python_version=="3.7"
33
pre-commit~=3.2;python_version>="3.8"
44
pytest

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def _get_dbt_core_version():
4646

4747
package_name = "dbt-impala"
4848
# make sure this always matches dbt/adapters/dbt_impala/__version__.py
49-
package_version = "1.8.0"
49+
package_version = "1.9.0"
5050
description = """The Impala adapter plugin for dbt"""
5151

5252
dbt_core_version = _get_dbt_core_version()

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[tox]
22
skipsdist = True
3-
envlist = py38,py39,py310,py311
3+
envlist = py39,py310,py311
44

5-
[testenv:{py38,py39,py310,py311}]
5+
[testenv:{py39,py310,py311}]
66
description = adapter plugin integration and unit testing
77
skip_install = true
88
passenv =

0 commit comments

Comments
 (0)