diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index 5b52a427..c512586f 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -13,10 +13,10 @@ jobs: matrix: os: [ubuntu-latest] python-version: - - 3.6 - - 3.7 - 3.8 - 3.9 + - 3.10 + - 3.11 - pypy3 steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index 7bc09f20..cd780686 100755 --- a/setup.py +++ b/setup.py @@ -51,10 +51,10 @@ "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", - "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 :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ], diff --git a/tox.ini b/tox.ini index 0230546e..4be2f527 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist=py35,py36,py37,py38,py39,pypy3,doclinks,doctest,linting,mypy +envlist=py38,py39,py310,py311,pypy3,doclinks,doctest,linting,mypy [testenv] deps=pytest