Skip to content

Commit aa81fa4

Browse files
committed
drop Python 3.8 because EOL 20241007, support 3.13
1 parent 802b10a commit aa81fa4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
os: [ubuntu-latest, macos-latest, windows-latest]
25-
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
25+
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
2626
fail-fast: false
2727
runs-on: ${{ matrix.os }}
2828
steps:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ classifiers = [
1313
'Operating System :: OS Independent',
1414
'Programming Language :: Python',
1515
'Programming Language :: Python :: 3',
16-
'Programming Language :: Python :: 3.8',
1716
'Programming Language :: Python :: 3.9',
1817
'Programming Language :: Python :: 3.10',
1918
'Programming Language :: Python :: 3.11',
2019
'Programming Language :: Python :: 3.12',
20+
'Programming Language :: Python :: 3.13',
2121
'Framework :: Flask',
2222
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
2323
'Topic :: Software Development :: Libraries :: Python Modules',

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[tox]
22
isolated_build = True
3-
envlist = py38, py39, py310, py311, py312, flake8, docs
3+
envlist = py39, py310, py311, py312, py313, flake8, docs
44
skip_missing_interpreters = true
55

66
[gh-actions]
77
python =
8-
3.8: py38
98
3.9: py39
109
3.10: py310
1110
3.11: py311
1211
3.12: py312
12+
3.13: py313
1313

1414
[testenv]
1515
deps =

0 commit comments

Comments
 (0)