From 1570434911194243e51a8138fe7173f769862856 Mon Sep 17 00:00:00 2001 From: Brian Rutledge Date: Sat, 5 Feb 2022 06:55:11 -0500 Subject: [PATCH] Drop support for Python 3.6 --- .github/workflows/main.yml | 2 +- .readthedocs.yaml | 2 +- setup.cfg | 3 +-- tox.ini | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 04ce8704..3a7f3817 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,7 +9,7 @@ on: env: FORCE_COLOR: "1" TOX_TESTENV_PASSENV: "FORCE_COLOR" - MIN_PYTHON_VERSION: "3.6" + MIN_PYTHON_VERSION: "3.7" DEFAULT_PYTHON_VERSION: "3.9" jobs: diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 83c0eeca..981657e0 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -15,7 +15,7 @@ formats: python: # Mininum supported Python version - version: "3.6" + version: "3.7" # Install twine first, because RTD uses `--upgrade-strategy eager`, # which installs the latest version of docutils via readme_renderer. # However, Sphinx 4.2.0 requires docutils>=0.14,<0.18. diff --git a/setup.cfg b/setup.cfg index 3073d0dc..117f9b59 100644 --- a/setup.cfg +++ b/setup.cfg @@ -23,7 +23,6 @@ classifiers = Programming Language :: Python Programming Language :: Python :: 3 Programming Language :: Python :: 3 :: Only - Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 @@ -34,7 +33,7 @@ classifiers = packages = twine twine.commands -python_requires = >=3.6 +python_requires = >=3.7 install_requires= pkginfo >= 1.8.1 readme_renderer >= 21.0 diff --git a/tox.ini b/tox.ini index 12ec03ec..65cba7d2 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 3.3 -envlist = lint,types,py{36,37,38,39,310},integration,docs +envlist = lint,types,py{37,38,39,310},integration,docs isolated_build = True [testenv]