Drop Python 3.5 support

This commit is contained in:
kyle-verhoog 2020-12-15 02:31:23 -05:00
parent bc0e04d833
commit 0014346de1
No known key found for this signature in database
GPG Key ID: 980E78C53F2E710A
2 changed files with 2 additions and 3 deletions

View File

@ -98,7 +98,6 @@ CLASSIFIERS = [
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
@ -140,7 +139,7 @@ setup(
long_description=LONG_DESCRIPTION, long_description=LONG_DESCRIPTION,
platforms=["any"], platforms=["any"],
classifiers=CLASSIFIERS, classifiers=CLASSIFIERS,
python_requires=">=3.5", python_requires=">=3.6",
install_requires=["pymongo>=3.4, <4.0"], install_requires=["pymongo>=3.4, <4.0"],
cmdclass={"test": PyTest}, cmdclass={"test": PyTest},
**extra_opts **extra_opts

View File

@ -1,5 +1,5 @@
[tox] [tox]
envlist = {py35,pypy3}-{mg34,mg36,mg39,mg311} envlist = pypy3-{mg34,mg36,mg39,mg311}
[testenv] [testenv]
commands = commands =