From f71b7ebaaa1bc39cad6705a52112f3c533846b44 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Wed, 24 Jun 2020 14:06:38 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=94=A5=20Mark=20Python=203.4=20as=20u?= =?UTF-8?q?nsupported?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's already been dropped from tox and Travis CI test matrixes and now it's time to drop it from the metadata since Python 3.4 is EOL. --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a8d542e..f6df679 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ zip_safe=False, install_requires=['pytest>=3.1.0'], setup_requires=['setuptools_scm'], - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*', classifiers=[ 'Development Status :: 7 - Inactive', 'Framework :: Pytest', @@ -35,7 +35,6 @@ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', From 9e9a3703cae457019fcb1ee87483f4e66f596185 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Wed, 24 Jun 2020 14:11:01 +0200 Subject: [PATCH 2/2] Add a trove classifier for Python 3.8 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index f6df679..1cf392e 100644 --- a/setup.py +++ b/setup.py @@ -38,5 +38,6 @@ 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', ], )