From c844e29eacd12dc1fc1b7b9b162e20653960b823 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Fri, 19 Jun 2020 14:59:46 -0400 Subject: [PATCH] ci: Drop tox-venv Its README says it is mostly obsolete due to improvements in virtualenv. Using it appears to cause problems related to https://github.com/pypa/setuptools/issues/1934 because virtualenv installs the wheel package by default but venv doesn't. --- .travis.yml | 2 +- tox.ini | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 474bc90e4..847c8cfe0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,7 +39,7 @@ jobs: env: TOX_ENV=lint install: - - travis_retry pip install tox tox-venv + - travis_retry pip install tox - python -VV - curl-config --version; pip freeze diff --git a/tox.ini b/tox.ini index ca05722c3..ac794be4d 100644 --- a/tox.ini +++ b/tox.ini @@ -11,9 +11,6 @@ # 'port install curl +universal' to get both 32- and 64-bit versions of # libcurl. [tox] -# When tox is run from a venv (instead of a virtualenv), it can get confused -# unless tox-venv is also installed. -requires = tox-venv envlist = # Basic configurations: Run the tests for each python version. py35-full,py36-full,py37-full,py38-full,pypy3-full -- 2.47.3