Skip to content

Commit dfa3339

Browse files
committed
Add Python 3.13 and drop Python 3.8
1 parent 0b5e80e commit dfa3339

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/tox.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
max-parallel: 4
2222
matrix:
23-
tox-env: [py38, py39, py310, py311, py312, pypy38, pypy39, pypy310, pygments]
23+
tox-env: [py39, py310, py311, py312, py313, pypy38, pypy39, pypy310, pygments]
2424
include:
2525
- tox-env: py38
2626
python-version: '3.8'
@@ -32,6 +32,8 @@ jobs:
3232
python-version: '3.11'
3333
- tox-env: py312
3434
python-version: '3.12'
35+
- tox-env: py313
36+
python-version: '3.13'
3537
- tox-env: pypy38
3638
python-version: pypy-3.8
3739
- tox-env: pypy39

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ maintainers = [
1818
{name = 'Isaac Muse'}
1919
]
2020
license = {file = 'LICENSE.md'}
21-
requires-python = '>=3.8'
21+
requires-python = '>=3.9'
2222
dependencies = [
2323
"importlib-metadata>=4.4;python_version<'3.10'"
2424
]
@@ -29,11 +29,11 @@ classifiers = [
2929
'Operating System :: OS Independent',
3030
'Programming Language :: Python',
3131
'Programming Language :: Python :: 3',
32-
'Programming Language :: Python :: 3.8',
3332
'Programming Language :: Python :: 3.9',
3433
'Programming Language :: Python :: 3.10',
3534
'Programming Language :: Python :: 3.11',
3635
'Programming Language :: Python :: 3.12',
36+
'Programming Language :: Python :: 3.13',
3737
'Programming Language :: Python :: 3 :: Only',
3838
'Programming Language :: Python :: Implementation :: CPython',
3939
'Programming Language :: Python :: Implementation :: PyPy',

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{38, 39, 310, 311, 312}, pypy{38, 39, 310}, pygments, flake8, checkspelling, pep517check, checklinks
2+
envlist = py{39, 310, 311, 312, 313}, pypy{38, 39, 310}, pygments, flake8, checkspelling, pep517check, checklinks
33
isolated_build = True
44

55
[testenv]

0 commit comments

Comments
 (0)