diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d30cfaff..6c82d030 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,22 +11,18 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - toxenv: [py35, py36, py37, py38, flake8] + toxenv: [py38, py39, py310, py311, flake8] include: - - toxenv: py35 - python-version: "3.5" - - toxenv: py36 - python-version: "3.6" - - toxenv: py37 - python-version: "3.7" - toxenv: py38 python-version: "3.8" - toxenv: py39 python-version: "3.9" - toxenv: py310 python-version: "3.10" + - toxenv: py311 + python-version: "3.11" - toxenv: flake8 - python-version: "3.X" + python-version: "3.11" steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index d6bc9c4d..c84e673d 100644 --- a/setup.py +++ b/setup.py @@ -22,12 +22,11 @@ classifiers=[ "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", "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", "Framework :: Pylons", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", diff --git a/tox.ini b/tox.ini index d2412e07..8becaa88 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py35,py36,py37-raw,py37,py38,py39,py310,flake8,docs +envlist = py38-raw,py38,py39,py310,py311,py312,flake8,docs skip_missing_interpreters = True [testenv]