Skip to content

Commit 62e6f94

Browse files
hf-kkleinKonstantin
andauthored
⬆️🐍 Support Python 3.13 (#36)
Co-authored-by: Konstantin <[email protected]>
1 parent 18c4e50 commit 62e6f94

File tree

8 files changed

+9
-8
lines changed

8 files changed

+9
-8
lines changed

.github/workflows/coverage.yml

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

.github/workflows/dev_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
python-version: ["3.11", "3.12"]
14+
python-version: ["3.11", "3.12", "3.13"]
1515
os: [ubuntu-latest]
1616
steps:
1717
- uses: actions/checkout@v4

.github/workflows/formatting.yml

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

.github/workflows/packaging_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
python-version: ["3.12"]
12+
python-version: ["3.13"]
1313
os: [ubuntu-latest]
1414
steps:
1515
- 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
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
python-version: ["3.12"]
13+
python-version: ["3.13"]
1414
os: [ubuntu-latest]
1515
linter-env: ["linting", "type_check", "spell_check"]
1616
steps:

.github/workflows/unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
python-version: ["3.10", "3.11", "3.12"]
12+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1313
os: [ubuntu-latest]
1414
steps:
1515
- 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 = [
2223
"pytz"
@@ -55,7 +56,7 @@ Homepage = "https://github.com/Hochfrequenz/chronomeleon"
5556

5657
[tool.black]
5758
line-length = 120
58-
target_version = ["py310", "py311", "py312"]
59+
target_version = ["py310", "py311", "py312", "py313"]
5960

6061
[tool.isort]
6162
line_length = 120

0 commit comments

Comments
 (0)