diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2020-10-06 13:23:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-06 13:23:32 -0400 |
commit | f4b936b4125719a6bcc7c7859e08b2da720892de (patch) | |
tree | 2b98e14f3ece5e4b3ad39c29749ce5d00973700d /tox.ini | |
parent | 2e0962ef1412b0cd566331954aff82711ce93acf (diff) | |
download | python-markdown-f4b936b4125719a6bcc7c7859e08b2da720892de.tar.gz |
Add PY39 support and drop PY35 (#1026)
Python 3.5 reached end-of-life on 2020-09-12 and Python 3.9 was released on 2020-10-05.
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,11 +1,11 @@ [tox] -envlist = py35, py36, py37, py38, pypy3, pygments, flake8, checkspelling, pep517check, checklinks +envlist = py36, py37, py38, py39, pypy3, pygments, flake8, checkspelling, pep517check, checklinks isolated_build = True [testenv] extras = testing deps = pytidylib -commands = +commands = coverage run --source=markdown -m unittest discover {toxinidir}/tests coverage xml coverage report --show-missing |