Skip to content

Commit

Permalink
switched to python3.6 explicitly for basepython
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislit committed Nov 26, 2018
1 parent b8d4677 commit 8abb1e3
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions tox.ini
Expand Up @@ -24,7 +24,7 @@ deps =
commands = nosetests []

[testenv:doctest]
basepython = python3
basepython = python3.6
deps =
nose
setenv =
Expand Down Expand Up @@ -63,26 +63,26 @@ commands = {[testenv:fuzz]commands}


[testenv:pylint]
basepython = python3
basepython = python3.6
skip_install = true
deps = pylint
commands = {toxinidir}/helpers/call_and_write_log.py \
"pylint --rcfile=setup.cfg abydos" 0

[testenv:pydocstyle]
basepython = python3
basepython = python3.6
skip_install = true
deps = pydocstyle
commands = {toxinidir}/helpers/call_and_write_log.py "pydocstyle --count ." 0

[testenv:pycodestyle]
basepython = python3
basepython = python3.6
skip_install = true
deps = pycodestyle
commands = {toxinidir}/helpers/call_and_write_log.py "pycodestyle ." 0

[testenv:flake8]
basepython = python3
basepython = python3.6
skip_install = true
deps =
flake8
Expand Down Expand Up @@ -113,14 +113,14 @@ commands = {toxinidir}/helpers/call_and_write_log.py \
"flake8 {toxinidir} --htmldir={toxinidir}/flake8" 0

[testenv:doc8]
basepython = python3
basepython = python3.6
skip_install = true
deps = doc8
commands = {toxinidir}/helpers/call_and_write_log.py "doc8 {toxinidir}" 0

[testenv:docs]
changedir = docs
basepython = python3
basepython = python3.6
whitelist_externals=make
deps =
sphinx
Expand All @@ -138,20 +138,20 @@ commands =
sphinx-build -b coverage -d {envtmpdir}/doctrees . _build/coverage

[testenv:badges]
basepython = python3
basepython = python3.6
skip_install = true
commands = python {toxinidir}/badge_update.py

[testenv:black]
changedir = {toxinidir}
basepython = python3
basepython = python3.6
skip_install = true
deps = black
commands = black .

[testenv:dist]
changedir = {toxinidir}
basepython = python3
basepython = python3.6
skip_install = true
commands =
python setup.py sdist
Expand Down

0 comments on commit 8abb1e3

Please sign in to comment.