Skip to content

Commit

Permalink
bumped from 3.6 to 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislit committed May 21, 2019
1 parent e1ae573 commit f3115f3
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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}

Expand All @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit f3115f3

Please sign in to comment.