Skip to content

Commit e044472

Browse files
hf-kkleinKonstantin
andauthored
⬆️🐍 Support Python 3.13 (#43)
Co-authored-by: Konstantin <[email protected]>
1 parent 4d1e2be commit e044472

File tree

8 files changed

+10
-9
lines changed

8 files changed

+10
-9
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: 2 additions & 2 deletions
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
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ${{ matrix.os }}
3939
strategy:
4040
matrix:
41-
python-version: [ "3.12" ]
41+
python-version: [ "3.13" ]
4242
os: [ ubuntu-latest ]
4343
# Specifying a GitHub environment, # Specifying a GitHub environment, which is strongly recommended by
4444
#PyPI: https://docs.pypi.org/trusted-publishers/adding-a-publisher/

.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.11", "3.12"]
12+
python-version: ["3.11", "3.12", "3.13"]
1313
pydantic: [true, false]
1414
os: [ubuntu-latest]
1515
steps:

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ classifiers = [
1515
"Programming Language :: Python :: 3 :: Only",
1616
"Programming Language :: Python :: 3.11",
1717
"Programming Language :: Python :: 3.12",
18+
"Programming Language :: Python :: 3.13",
1819
]
1920
dependencies = [] # add all the fundamend dependencies here, None so far
2021
dynamic = ["readme", "version"]
@@ -55,7 +56,7 @@ Homepage = "https://github.com/Hochfrequenz/xml-fundamend-python"
5556

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

6061
[tool.isort]
6162
line_length = 120

0 commit comments

Comments
 (0)