Skip to content

Commit

Permalink
Documenting support for python 3.13 (#86)
Browse files Browse the repository at this point in the history
`dbt-score` is documented as working for Python 3.12, but it looks like
it also supports Python 3.13, just that this is not documented. This PR
documents this support.
  • Loading branch information
pgoslatara authored Dec 3, 2024
1 parent 1f0f347 commit 9f6aa67
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.10", "3.11", "3.12"]
python: ["3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to

## [Unreleased]

- Documenting support for python 3.13. (#86)

## [0.8.0] - 2024-11-12

- Support linting of sources.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
]
Expand Down Expand Up @@ -118,4 +119,3 @@ fail_under = 80
exclude_also = [
"@overload"
]

2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
env_list = py{310,311,312},lint,docs
env_list = py{310,311,312,313},lint,docs

skip_missing_interpreters = true

Expand Down

0 comments on commit 9f6aa67

Please sign in to comment.