diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -12,14 +12,14 @@ minversion = 2.5 skipsdist = True envlist = pep8, - py27, + py35, docs, docs-linkcheck [testenv] -basepython=python2 +basepython=python3.5 usedevelop = True -install_command = pip install -U {opts} {packages} +install_command = pip3 install -U {opts} {packages} deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands = @@ -59,7 +59,7 @@ deps = -rdocs/requirements.txt commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck [testenv:yamllint] -basepython = python2.7 +basepython = python3.5 files = etc commands = |