Skip to content

Commit 41e39a4

Browse files
committed
Support more python versions
Support for python 3.12 and 3.13. Signed-off-by: Andrea Cervesato <andrea.cervesato@suse.com>
1 parent b00f4a6 commit 41e39a4

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

.github/workflows/linting.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,16 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11.0"]
13+
python-version: [
14+
"3.6",
15+
"3.7",
16+
"3.8",
17+
"3.9",
18+
"3.10",
19+
"3.11",
20+
"3.12",
21+
"3.13"
22+
]
1423

1524
steps:
1625
- name: Show OS

.github/workflows/tests.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,16 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11.0"]
13+
python-version: [
14+
"3.6",
15+
"3.7",
16+
"3.8",
17+
"3.9",
18+
"3.10",
19+
"3.11",
20+
"3.12",
21+
"3.13"
22+
]
1423

1524
steps:
1625
- name: Show OS

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
"Programming Language :: Python :: 3.9",
3131
"Programming Language :: Python :: 3.10",
3232
"Programming Language :: Python :: 3.11",
33+
"Programming Language :: Python :: 3.12",
34+
"Programming Language :: Python :: 3.13",
3335
"Topic :: Software Development :: Testing",
3436
],
3537
extras_require={

0 commit comments

Comments
 (0)