From f3115f3de071194ff8631ab298bf082060821b7d Mon Sep 17 00:00:00 2001 From: Chris Little Date: Mon, 20 May 2019 22:21:15 -0700 Subject: [PATCH] bumped from 3.6 to 3.7 --- tox.ini | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/tox.ini b/tox.ini index 0c883ab22..c3893148d 100644 --- a/tox.ini +++ b/tox.ini @@ -2,12 +2,12 @@ envlist = black py27 - py36 + py37 doctest py27-regression - py36-regression + py37-regression py27-fuzz - py36-fuzz + py37-fuzz pylint pydocstyle flake8 @@ -26,14 +26,14 @@ deps = coverage py27: pyliblzma lzss - py36,doctest: paq + py36,py37,doctest: paq nltk syllabipy scipy commands = nosetests [] [testenv:doctest] -basepython = python3.6 +basepython = python3.7 setenv = NOSE_WITH_COVERAGE=0 NOSE_WITH_DOCTEST=1 @@ -53,7 +53,7 @@ commands = nosetests {toxinidir}/tests/regression --processes=-1 \ deps = {[testenv:regression]deps} commands = {[testenv:regression]commands} -[testenv:py36-regression] +[testenv:py37-regression] deps = {[testenv:regression]deps} commands = {[testenv:regression]commands} @@ -66,32 +66,32 @@ commands = nosetests {toxinidir}/tests/fuzz --processes=-1 \ deps = {[testenv:fuzz]deps} commands = {[testenv:fuzz]commands} -[testenv:py36-fuzz] +[testenv:py37-fuzz] deps = {[testenv:fuzz]deps} commands = {[testenv:fuzz]commands} [testenv:pylint] -basepython = python3.6 +basepython = python3.7 skip_install = true deps = pylint commands = {toxinidir}/helpers/call_and_write_log.py \ "pylint --rcfile=setup.cfg abydos" 0 [testenv:pydocstyle] -basepython = python3.6 +basepython = python3.7 skip_install = true deps = pydocstyle commands = {toxinidir}/helpers/call_and_write_log.py "pydocstyle --count ." 0 [testenv:pycodestyle] -basepython = python3.6 +basepython = python3.7 skip_install = true deps = pycodestyle commands = {toxinidir}/helpers/call_and_write_log.py "pycodestyle ." 0 [testenv:flake8] -basepython = python3.6 +basepython = python3.7 skip_install = true deps = flake8 @@ -122,14 +122,14 @@ commands = {toxinidir}/helpers/call_and_write_log.py \ "flake8 {toxinidir} --htmldir={toxinidir}/flake8" 0 [testenv:doc8] -basepython = python3.6 +basepython = python3.7 skip_install = true deps = doc8 commands = {toxinidir}/helpers/call_and_write_log.py "doc8 {toxinidir}" 0 [testenv:docs] changedir = docs -basepython = python3.6 +basepython = python3.7 whitelist_externals=make deps = sphinx @@ -147,20 +147,20 @@ commands = sphinx-build -j 8 -b coverage -d {envtmpdir}/doctrees . _build/coverage [testenv:badges] -basepython = python3.6 +basepython = python3.7 skip_install = true commands = python {toxinidir}/badge_update.py [testenv:black] changedir = {toxinidir} -basepython = python3.6 +basepython = python3.7 skip_install = true deps = black commands = black . [testenv:dist] changedir = {toxinidir} -basepython = python3.6 +basepython = python3.7 skip_install = true commands = python setup.py sdist