From d67016d1b99ed1750c01af0caa4c137a768f31ce Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Fri, 28 Apr 2023 13:39:49 -0400 Subject: [PATCH] Get the right version of tox in the wheelhouse --- .circleci/populate-wheelhouse.sh | 3 ++- .circleci/setup-virtualenv.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/populate-wheelhouse.sh b/.circleci/populate-wheelhouse.sh index 239c8367b..f7ce361a8 100755 --- a/.circleci/populate-wheelhouse.sh +++ b/.circleci/populate-wheelhouse.sh @@ -30,4 +30,5 @@ LANG="en_US.UTF-8" "${PIP}" \ wheel \ --wheel-dir "${WHEELHOUSE_PATH}" \ "${PROJECT_ROOT}"[testenv] \ - "${PROJECT_ROOT}"[test] + "${PROJECT_ROOT}"[test] \ + "tox~=3.0" diff --git a/.circleci/setup-virtualenv.sh b/.circleci/setup-virtualenv.sh index 7fc6dc528..3f0074da3 100755 --- a/.circleci/setup-virtualenv.sh +++ b/.circleci/setup-virtualenv.sh @@ -30,7 +30,7 @@ export PIP_NO_INDEX="1" # Get tox inside the bootstrap virtualenv since we use tox to manage the rest # of the environment. -"${BOOTSTRAP_VENV}"/bin/pip install "tox~=3.0" +"${BOOTSTRAP_VENV}"/bin/pip install tox # Get everything else installed in it, too. "${BOOTSTRAP_VENV}"/bin/tox \