summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorWaylan Limberg <waylan.limberg@icloud.com>2020-10-06 13:23:32 -0400
committerGitHub <noreply@github.com>2020-10-06 13:23:32 -0400
commitf4b936b4125719a6bcc7c7859e08b2da720892de (patch)
tree2b98e14f3ece5e4b3ad39c29749ce5d00973700d /tox.ini
parent2e0962ef1412b0cd566331954aff82711ce93acf (diff)
downloadpython-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.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index f518c05..a36c7ee 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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