From 4fd412532b2a0e8f40c8f860e7707c3bdd67ebcb Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Fri, 5 Feb 2021 23:02:12 -0800 Subject: [PATCH] Drop python 3.6 tests It actually works, but mypy fails --- .drone.star | 5 +---- setup.py | 6 +++--- tox.ini | 2 +- 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/.drone.star b/.drone.star index e7fd7b7..4ceabe0 100644 --- a/.drone.star +++ b/.drone.star @@ -1,16 +1,13 @@ # Build pipelines PYTHON_VERSIONS = [ - "3.6", "3.7", "3.8", "3.9", "latest", ] -PYPY3_VERSIONS = [ - "3", -] +PYPY3_VERSIONS = [] def main(ctx): diff --git a/setup.py b/setup.py index 5f41510..9f7677b 100644 --- a/setup.py +++ b/setup.py @@ -24,10 +24,10 @@ setup( author="iamthefij", author_email="", classifiers=[ - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", + "License :: OSI Approved :: MIT License" "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", ], keywords="", packages=find_packages( diff --git a/tox.ini b/tox.ini index 1b83338..618b7d9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py3,py36,py37,py38,pypy3 +envlist = py3,py37,py38,py39 [testenv] deps =