Skip to content

Commit 9f6aa67

Browse files
authored
Documenting support for python 3.13 (#86)
`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.
1 parent 1f0f347 commit 9f6aa67

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
python: ["3.10", "3.11", "3.12"]
21+
python: ["3.10", "3.11", "3.12", "3.13"]
2222

2323
steps:
2424
- uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ and this project adheres to
88

99
## [Unreleased]
1010

11+
- Documenting support for python 3.13. (#86)
12+
1113
## [0.8.0] - 2024-11-12
1214

1315
- Support linting of sources.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ classifiers = [
1818
"Programming Language :: Python :: 3.10",
1919
"Programming Language :: Python :: 3.11",
2020
"Programming Language :: Python :: 3.12",
21+
"Programming Language :: Python :: 3.13",
2122
"Intended Audience :: Developers",
2223
"Operating System :: OS Independent",
2324
]
@@ -118,4 +119,3 @@ fail_under = 80
118119
exclude_also = [
119120
"@overload"
120121
]
121-

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
env_list = py{310,311,312},lint,docs
2+
env_list = py{310,311,312,313},lint,docs
33

44
skip_missing_interpreters = true
55

0 commit comments

Comments
 (0)