From 753c71d9908ef312124eaef34dfbca18b1f27036 Mon Sep 17 00:00:00 2001 From: James Tocknell Date: Sat, 29 May 2021 15:22:10 +1000 Subject: [PATCH] Drop 3.5 and add 3.9 --- setup.py | 4 ++-- tox.ini | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 6c021d8..3dc9330 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ name="pytest-info-collector", version=versioneer.get_version(), packages = ['pytest_info_collector'], - python_requires = '>=3.5', + python_requires = '>=3.6', install_requires = ["pytest"], author = "James Tocknell", author_email = "aragilar@gmail.com", @@ -34,10 +34,10 @@ 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', ], cmdclass=versioneer.get_cmdclass(), ) diff --git a/tox.ini b/tox.ini index b46564e..f3656a1 100644 --- a/tox.ini +++ b/tox.ini @@ -4,14 +4,13 @@ # and then run "tox" from this directory. [tox] -envlist = py35,py36,py37,py38,py39,flake8,pylint,docs,check-manifest,checkreadme +envlist = py36,py37,py38,py39,flake8,pylint,docs,check-manifest,checkreadme [testenv] commands = py.test -p pytester --cov={envsitepackagesdir}/pytest_info_collector --runpytest=subprocess {posargs} deps = -rtest-requirements.txt basepython = - py35: {env:TOXPYTHON:python3.5} py36: {env:TOXPYTHON:python3.6} py37: {env:TOXPYTHON:python3.7} py38: {env:TOXPYTHON:python3.8}