diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d1edea6..6f99ae2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,6 +12,9 @@ jobs: fail-fast: false matrix: include: + # Latest dbts' test matrix on 3.11 (well supported py version) on ubuntu + - { python: "3.11", os: "ubuntu-latest", dbt: "1.4" } + - { python: "3.11", os: "ubuntu-latest", dbt: "1.5" } # full test matrix on 3.10 (well supported py version) on ubuntu - { python: "3.10", os: "ubuntu-latest", dbt: "1.0" } - { python: "3.10", os: "ubuntu-latest", dbt: "1.1" } diff --git a/noxfile.py b/noxfile.py index 47c7b10..25364df 100644 --- a/noxfile.py +++ b/noxfile.py @@ -22,7 +22,7 @@ package = "dbt_core_interface" -python_versions = ["3.8", "3.9", "3.10"] +python_versions = ["3.8", "3.9", "3.10", "3.11"] dbt_versions = ["1.0.9", "1.1.3", "1.2.4", "1.3.2"] nox.needs_version = ">= 2021.6.6" nox.options.sessions = ( diff --git a/pyproject.toml b/pyproject.toml index aa41f5e..38d52bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dbt-core-interface" -version = "0.2.4" +version = "0.2.8" description = "Dbt Core Interface" authors = ["Alex Butler "] license = "MIT" @@ -14,7 +14,7 @@ classifiers = ["Development Status :: 3 - Alpha"] Changelog = "https://github.com/z3z1ma/dbt-core-interface/releases" [tool.poetry.dependencies] -python = ">=3.8,<3.11" +python = ">=3.8,<3.12" [tool.poetry.dev-dependencies] Pygments = ">=2.10.0"