Skip to content

Commit c20236c

Browse files
hf-kkleinKonstantin
and
Konstantin
authored
chore: Run CI in Python 3.13 / Officially support 3.13 (#133)
* chore: Run CI in Python 3.13 / Officially support 3.13 * run ci on 3.13 --------- Co-authored-by: Konstantin <[email protected]>
1 parent 1057539 commit c20236c

8 files changed

+8
-8
lines changed

.github/workflows/coverage.yml

+1-1
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/dev_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11-
python-version: ["3.11", "3.12"]
11+
python-version: ["3.11", "3.12", "3.13"]
1212
os: [ubuntu-latest]
1313
steps:
1414
- uses: actions/checkout@v4

.github/workflows/formatting.yml

+1-1
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/integrationtests.yml

+1-1
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/packaging_test.yml

+1-1
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/python-publish.yml

+1-1
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

+1-1
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", "spell_check"]
1313
steps:

.github/workflows/unittests.yml

+1-1
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

0 commit comments

Comments
 (0)