summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2019-04-15 22:48:56 -0500
committerMichael Merickel <michael@merickel.org>2019-04-15 22:48:56 -0500
commitadfa84d0ea9259892c1d8889e3e0172980983df2 (patch)
tree3576fb9af51853e8510410522568df0653be22df /tox.ini
parent7580211ec6af7acfed762f0dc49a252c9fa657e3 (diff)
downloadpyramid-adfa84d0ea9259892c1d8889e3e0172980983df2.tar.gz
pyramid-adfa84d0ea9259892c1d8889e3e0172980983df2.tar.bz2
pyramid-adfa84d0ea9259892c1d8889e3e0172980983df2.zip
remove basepython statements from tox.ini
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini7
1 files changed, 0 insertions, 7 deletions
diff --git a/tox.ini b/tox.ini
index 33e3c2c81..441a118a8 100644
--- a/tox.ini
+++ b/tox.ini
@@ -17,7 +17,6 @@ setenv =
[testenv:lint]
skip_install = true
-basepython = python3.6
commands =
flake8 src/pyramid tests setup.py
black --check --diff src/pyramid tests setup.py
@@ -30,8 +29,6 @@ deps =
check-manifest
[testenv:docs]
-# pin to 3.5 to match what RTD uses
-basepython = python3.5
whitelist_externals = make
commands =
make -C docs doctest html epub BUILDDIR={envdir} "SPHINXOPTS=-W -E"
@@ -39,7 +36,6 @@ extras =
docs
[testenv:pdf]
-basepython = python3.5
whitelist_externals = make
commands =
make -C docs latexpdf BUILDDIR={envdir} "SPHINXOPTS=-W -E"
@@ -48,7 +44,6 @@ extras =
[testenv:coverage]
skip_install = true
-basepython = python3.6
commands =
coverage combine
coverage xml
@@ -60,7 +55,6 @@ setenv =
[testenv:black]
skip_install = true
-basepython = python3.6
commands =
black src/pyramid tests setup.py
deps =
@@ -68,7 +62,6 @@ deps =
[testenv:build]
skip_install = true
-basepython = python3.6
commands =
# clean up build/ and dist/ folders
python -c 'import shutil; shutil.rmtree("dist", ignore_errors=True)'