From 1c48a961b45b91cb013925b3dda50e26dfa154af Mon Sep 17 00:00:00 2001 From: Adam Hopkins Date: Wed, 1 Jan 2025 00:52:34 +0200 Subject: [PATCH] Workflow changes --- .github/workflows/python-package.yml | 2 +- setup.cfg | 5 +++-- tox.ini | 5 +++-- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index dcbec71..fe2c212 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, 3.9, "3.10", "3.11"] + python-version: [3.9, "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v2 diff --git a/setup.cfg b/setup.cfg index 8ddaa44..cf5c6ad 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = sanic-ext -version = 23.12.0 +version = 24.12.0 url = http://github.com/sanic-org/sanic-ext/ license = MIT author = Sanic Community @@ -11,10 +11,11 @@ classifiers = Development Status :: 4 - Beta Environment :: Web Environment License :: OSI Approved :: MIT License - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 + Programming Language :: Python :: 3.13 [options] include_package_data = True diff --git a/tox.ini b/tox.ini index 7a93d70..10a882d 100644 --- a/tox.ini +++ b/tox.ini @@ -1,13 +1,14 @@ [tox] -envlist = {py38,py39,py310,py311}, check +envlist = {py39,py310,py311,py312,py313}, check [gh-actions] python = - 3.8: py38 3.9: py39 3.10: py310 3.11: py311, check + 3.12: py312 + 3.13: py313 [testenv] extras = test