diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 54d899f9..c257189a 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -17,7 +17,6 @@ jobs: # Python version(s) to use when running the tests # # https://github.com/actions/python-versions/blob/main/versions-manifest.json python-version: - - "3.6" - "3.7" - "3.8" - "3.9" diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1791b97c..8b3bec0e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,7 +16,7 @@ jobs: matrix: # Python version(s) to use when running the tests python: - - "3.8" + - "3.10" # Docker images of MySQL-compliant databases to run the tests suite on database: diff --git a/setup.py b/setup.py index 719e35b9..1d13e89d 100644 --- a/setup.py +++ b/setup.py @@ -41,15 +41,15 @@ # Specify the Python versions you support here. In particular, ensure # that you indicate whether you support Python 2, Python 3 or both. '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', ], packages=find_packages(), extras_require={ 'dev': [ - 'coverage==6.2', + 'coverage==6.3', 'coveralls==3.3.1', 'pylint==2.12.2', 'pytest==6.2.5',