Skip to content

Commit

Permalink
Add Python 3.9 into tox config (#1085)
Browse files Browse the repository at this point in the history
Latest Debian stable has this and adding it makes development easier.
Also looks like this no longer supports Python 3.5 so removing
  • Loading branch information
nanonyme authored Nov 5, 2022
1 parent e561ae6 commit 239766a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
downloadcache = {toxworkdir}/cache/
envlist = py35, py35-noext, py36, py36-noext, py37, py37-noext, py38, py38-noext
envlist = py36, py36-noext, py37, py37-noext, py38, py38-noext, py39, py39-noext

[testenv]

Expand All @@ -11,9 +11,6 @@ whitelist_externals = make
[testenv:pypy-noext]
commands = make check-noextensions

[testenv:py35-noext]
commands = make check-noextensions

[testenv:py36-noext]
commands = make check-noextensions

Expand All @@ -22,3 +19,6 @@ commands = make check-noextensions

[testenv:py38-noext]
commands = make check-noextensions

[testenv:py39-noext]
commands = make check-noextensions

0 comments on commit 239766a

Please sign in to comment.