From 66aebaa114a54dc8f22e9de82eb725b07fbb7606 Mon Sep 17 00:00:00 2001 From: Nicola Iarocci Date: Tue, 11 Jul 2023 17:31:11 +0200 Subject: [PATCH] drop obsolete python versions; add 3.10 and 3.11 --- .github/workflows/qa.yml | 4 ++-- setup.py | 4 ++-- tox.ini | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) 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