Skip to content

Commit fc766bc

Browse files
committed
Add support for Python 3.13
1 parent 1386f67 commit fc766bc

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
strategy:
3131
fail-fast: false
3232
matrix:
33-
python-version: [3.8, 3.9, '3.10', 3.11, 3.12, pypy3.9]
33+
python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13, pypy3.9]
3434
steps:
3535
- uses: actions/checkout@v3
3636
- name: Set up Python ${{ matrix.python-version }}

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@
7070
'Programming Language :: Python :: 3.10',
7171
'Programming Language :: Python :: 3.11',
7272
'Programming Language :: Python :: 3.12',
73+
'Programming Language :: Python :: 3.13',
7374
'Programming Language :: Python :: Implementation :: PyPy',
7475
'Topic :: Office/Business :: Financial',
7576
'Topic :: Software Development :: Libraries :: Python Modules',

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{36,37,38,39,310,311,312,py3},flake8,docs,headers
2+
envlist = py{36,37,38,39,310,311,312,313,py3},flake8,docs,headers
33
skip_missing_interpreters = true
44

55
[testenv]

0 commit comments

Comments
 (0)