Skip to content

Commit

Permalink
Stop testing on unsupported Python version
Browse files Browse the repository at this point in the history
Only run tests on Python >= 3.7, older versions are no longer supported.
  • Loading branch information
tholo committed Mar 5, 2022
1 parent ec37880 commit 6ccc641
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.1.0
-----

- Drop Python 2 support and dependency on py; from @erikkemperman
- Stop testing on Python versions prior to 3.7

1.0.7
-----

Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[tox]
envlist=py36-pytesttrunk,py36-xdist,py35,py36,py37,py38,py39,py310,pypy3
envlist=py310-pytesttrunk,py310-xdist,py37,py38,py39,py310,pypy3

[testenv]
deps=pytest
commands=
pytest --junitxml={envlogdir}/junit-{envname}.xml {posargs}

[testenv:py36-pytesttrunk]
[testenv:py310-pytesttrunk]
pip_pre=true
deps=pytest

[testenv:py36-xdist]
[testenv:py310-xdist]
deps={[testenv]deps}
pytest-xdist
commands=
Expand Down

0 comments on commit 6ccc641

Please sign in to comment.