Skip to content

Commit

Permalink
Support Python 3.11 (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
BAntonellini authored Jan 4, 2024
1 parent 8242cc4 commit d56e000
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = (
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <butler.alex2010@gmail.com>"]
license = "MIT"
Expand All @@ -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"
Expand Down

0 comments on commit d56e000

Please sign in to comment.