Skip to content

Commit 50feabc

Browse files
committed
also run tests with Python 3.13
1 parent 96ff24b commit 50feabc

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

.github/workflows/eb_command.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-20.04
1515
strategy:
1616
matrix:
17-
python: [3.6, 3.7, 3.8, 3.9, '3.10', '3.11', '3.12']
17+
python: [3.6, 3.7, 3.8, 3.9, '3.10', '3.11', '3.12', '3.13']
1818
fail-fast: false
1919
steps:
2020
- uses: actions/checkout@v3

.github/workflows/linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-20.04
1414
strategy:
1515
matrix:
16-
python-version: [3.6, 3.7, 3.8, 3.9, '3.10', '3.11', '3.12']
16+
python-version: [3.6, 3.7, 3.8, 3.9, '3.10', '3.11', '3.12', '3.13']
1717
steps:
1818
- uses: actions/checkout@v3
1919

.github/workflows/unit_tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ jobs:
4545
modules_tool: ${{needs.setup.outputs.lmod8}}
4646
- python: '3.12'
4747
modules_tool: ${{needs.setup.outputs.lmod8}}
48+
- python: '3.13'
49+
modules_tool: ${{needs.setup.outputs.lmod8}}
4850
# There may be encoding errors in Python 3 which are hidden when an UTF-8 encoding is set
4951
# Hence run the tests (again) with LC_ALL=C and Python 3.6 (or any < 3.7)
5052
- python: 3.6

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ def find_rel_test():
117117
"Programming Language :: Python :: 3.10",
118118
"Programming Language :: Python :: 3.11",
119119
"Programming Language :: Python :: 3.12",
120+
"Programming Language :: Python :: 3.13",
120121
"Topic :: Software Development :: Build Tools",
121122
],
122123
platforms="Linux",

0 commit comments

Comments
 (0)