Skip to content

Commit bfb51ef

Browse files
committed
Add support for Python 3.13
1 parent 377de8c commit bfb51ef

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.github/workflows/build-and-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1414
steps:
1515
- uses: actions/checkout@v3
1616
- name: Set up Python

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12']
13+
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1414
steps:
1515
- uses: actions/checkout@v3
1616
- name: Set up Python
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"description": "Add Python 3.13 to supported versions and CI test matrix",
3+
"type": "patch"
4+
}

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ def run(self):
101101
'Programming Language :: Python :: 3.10',
102102
'Programming Language :: Python :: 3.11',
103103
'Programming Language :: Python :: 3.12',
104+
'Programming Language :: Python :: 3.13',
104105
'Operating System :: OS Independent',
105106
],
106107

0 commit comments

Comments
 (0)