diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-12-31 09:17:07 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-12-31 09:17:07 -0500 |
commit | 4d38f23251046ec48a73cd1db5773a68d58130e5 (patch) | |
tree | 882dee1ba4d7811dd006cf7fad81835d978a05e2 /tox.ini | |
parent | c2773105682ee01b5ebfe5d29e86a9634d02b053 (diff) | |
download | python-coveragepy-git-nedbat/drop-36.tar.gz |
build: drop Python 3.6 supportnedbat/drop-36
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -3,7 +3,8 @@ [tox] # When changing this list, be sure to check the [gh-actions] list below. -envlist = py{36,37,38,39,310,311}, pypy3, doc, lint +# PYVERSIONS +envlist = py{37,38,39,310,311}, pypy3, doc, lint skip_missing_interpreters = {env:COVERAGE_SKIP_MISSING_INTERPRETERS:True} toxworkdir = {env:TOXWORKDIR:.tox} @@ -15,7 +16,7 @@ extras = deps = -r requirements/pip.pip -r requirements/pytest.pip - py{36,37,38,39,310}: -r requirements/light-threads.pip + py{37,38,39,310}: -r requirements/light-threads.pip # Windows can't update the pip version with pip running, so use Python # to install things. @@ -90,8 +91,8 @@ commands = check-manifest --ignore 'lab/*,perf/*,doc/sample_html/*,.treerc,.github*' [gh-actions] +# PYVERSIONS python = - 3.6: py36 3.7: py37 3.8: py38 3.9: py39 |