Drop python 3.6 tests
continuous-integration/drone/push Build is passing Details

It actually works, but mypy fails
This commit is contained in:
IamTheFij 2021-02-05 23:02:12 -08:00
parent 650a759a1d
commit 4fd412532b
3 changed files with 5 additions and 8 deletions

View File

@ -1,16 +1,13 @@
# Build pipelines # Build pipelines
PYTHON_VERSIONS = [ PYTHON_VERSIONS = [
"3.6",
"3.7", "3.7",
"3.8", "3.8",
"3.9", "3.9",
"latest", "latest",
] ]
PYPY3_VERSIONS = [ PYPY3_VERSIONS = []
"3",
]
def main(ctx): def main(ctx):

View File

@ -24,10 +24,10 @@ setup(
author="iamthefij", author="iamthefij",
author_email="", author_email="",
classifiers=[ classifiers=[
"Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License" "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
], ],
keywords="", keywords="",
packages=find_packages( packages=find_packages(

View File

@ -1,5 +1,5 @@
[tox] [tox]
envlist = py3,py36,py37,py38,pypy3 envlist = py3,py37,py38,py39
[testenv] [testenv]
deps = deps =