Skip to content

Commit 290f4a8

Browse files
committed
Stop testing on unsupported Python version
Only run tests on Python >= 3.7, older versions are no longer supported.
1 parent 8bfb90f commit 290f4a8

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
1.1.0
2+
-----
3+
4+
- Drop Python 2 support and dependency on py; from @erikkemperman
5+
- Stop testing on Python versions prior to 3.7
6+
17
1.0.7
28
-----
39

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[tox]
2-
envlist=py36-pytesttrunk,py36-xdist,py35,py36,py37,py38,py39,py310,pypy3
2+
envlist=py310-pytesttrunk,py310-xdist,py37,py38,py39,py310,pypy3
33

44
[testenv]
55
deps=pytest
66
commands=
77
pytest --junitxml={envlogdir}/junit-{envname}.xml {posargs}
88

9-
[testenv:py36-pytesttrunk]
9+
[testenv:py310-pytesttrunk]
1010
pip_pre=true
1111
deps=pytest
1212

13-
[testenv:py36-xdist]
13+
[testenv:py310-xdist]
1414
deps={[testenv]deps}
1515
pytest-xdist
1616
commands=

0 commit comments

Comments
 (0)