Skip to content

Commit 187e5d8

Browse files
committed
Workflow changes
1 parent 63535bf commit 187e5d8

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/python-package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: [3.8, 3.9, "3.10", "3.11"]
12+
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
1313

1414
steps:
1515
- uses: actions/checkout@v2

setup.cfg

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = sanic-ext
3-
version = 23.12.0
3+
version = 24.12.0
44
url = http://github.com/sanic-org/sanic-ext/
55
license = MIT
66
author = Sanic Community
@@ -11,10 +11,11 @@ classifiers =
1111
Development Status :: 4 - Beta
1212
Environment :: Web Environment
1313
License :: OSI Approved :: MIT License
14-
Programming Language :: Python :: 3.8
1514
Programming Language :: Python :: 3.9
1615
Programming Language :: Python :: 3.10
1716
Programming Language :: Python :: 3.11
17+
Programming Language :: Python :: 3.12
18+
Programming Language :: Python :: 3.13
1819

1920
[options]
2021
include_package_data = True

tox.ini

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
[tox]
2-
envlist = {py38,py39,py310,py311}, check
2+
envlist = {py39,py310,py311,py312,py313}, check
33

44

55
[gh-actions]
66
python =
7-
3.8: py38
87
3.9: py39
98
3.10: py310
109
3.11: py311, check
10+
3.12: py312
11+
3.13: py313
1112

1213
[testenv]
1314
extras = test

0 commit comments

Comments
 (0)