Skip to content

Commit

Permalink
Merge pull request #576 from Cornices/update-to-python3.12
Browse files Browse the repository at this point in the history
Update test matrix for the new generation of Python versions.
  • Loading branch information
Natim committed Jul 13, 2023
2 parents 3accf32 + 7a44068 commit 511f04c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 12 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -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]
Expand Down

0 comments on commit 511f04c

Please sign in to comment.