Skip to content

Commit 39d9825

Browse files
hf-kkleinKonstantin
andauthored
⬆️🐍 Support Python 3.13 (#116)
Co-authored-by: Konstantin <[email protected]>
1 parent b870d63 commit 39d9825

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ${{ matrix.os }}
77
strategy:
88
matrix:
9-
python-version: ["3.12"]
9+
python-version: ["3.13"]
1010
os: [ubuntu-latest]
1111
steps:
1212
- uses: actions/checkout@v4

.github/workflows/formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ${{ matrix.os }}
77
strategy:
88
matrix:
9-
python-version: ["3.12"]
9+
python-version: ["3.13"]
1010
os: [ubuntu-latest]
1111
tool: ["black", "isort"]
1212
steps:

.github/workflows/packaging_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ${{ matrix.os }}
77
strategy:
88
matrix:
9-
python-version: ["3.11", "3.12"]
9+
python-version: ["3.11", "3.12", "3.13"]
1010
os: [ubuntu-latest]
1111
steps:
1212
- uses: actions/checkout@v4

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ${{ matrix.os }}
1818
strategy:
1919
matrix:
20-
python-version: ["3.12"]
20+
python-version: ["3.13"]
2121
os: [ubuntu-latest]
2222
steps:
2323
- uses: actions/checkout@v4

.github/workflows/pythonlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
python-version: ["3.12"]
10+
python-version: ["3.13"]
1111
os: [ubuntu-latest]
1212
linter-env: ["linting", "type_check"]
1313
steps:

.github/workflows/unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ${{ matrix.os }}
77
strategy:
88
matrix:
9-
python-version: ["3.9", "3.10", "3.11", "3.12"]
9+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1010
os: [ubuntu-latest]
1111
steps:
1212
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ classifiers = [
1717
"Programming Language :: Python :: 3.10",
1818
"Programming Language :: Python :: 3.11",
1919
"Programming Language :: Python :: 3.12",
20+
"Programming Language :: Python :: 3.13",
2021
]
2122
dependencies = [] # add all the dependencies from requirements.in here, too
2223
dynamic = ["readme", "version"]
@@ -53,7 +54,7 @@ Homepage = "https://github.com/Hochfrequenz/python-generics"
5354

5455
[tool.black]
5556
line-length = 120
56-
target_version = ["py39", "py310", "py311", "py312"]
57+
target_version = ["py39", "py310", "py311", "py312", "py313"]
5758

5859
[tool.isort]
5960
line_length = 120

0 commit comments

Comments
 (0)