Skip to content

Commit 753c71d

Browse files
committed
Drop 3.5 and add 3.9
1 parent 1f6a256 commit 753c71d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
name="pytest-info-collector",
1515
version=versioneer.get_version(),
1616
packages = ['pytest_info_collector'],
17-
python_requires = '>=3.5',
17+
python_requires = '>=3.6',
1818
install_requires = ["pytest"],
1919
author = "James Tocknell",
2020
author_email = "[email protected]",
@@ -34,10 +34,10 @@
3434
'Intended Audience :: Developers',
3535
'License :: OSI Approved :: BSD License',
3636
'Programming Language :: Python :: 3',
37-
'Programming Language :: Python :: 3.5',
3837
'Programming Language :: Python :: 3.6',
3938
'Programming Language :: Python :: 3.7',
4039
'Programming Language :: Python :: 3.8',
40+
'Programming Language :: Python :: 3.9',
4141
],
4242
cmdclass=versioneer.get_cmdclass(),
4343
)

tox.ini

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py35,py36,py37,py38,py39,flake8,pylint,docs,check-manifest,checkreadme
7+
envlist = py36,py37,py38,py39,flake8,pylint,docs,check-manifest,checkreadme
88

99
[testenv]
1010
commands = py.test -p pytester --cov={envsitepackagesdir}/pytest_info_collector --runpytest=subprocess {posargs}
1111
deps =
1212
-rtest-requirements.txt
1313
basepython =
14-
py35: {env:TOXPYTHON:python3.5}
1514
py36: {env:TOXPYTHON:python3.6}
1615
py37: {env:TOXPYTHON:python3.7}
1716
py38: {env:TOXPYTHON:python3.8}

0 commit comments

Comments
 (0)