From 4f8269db09c07c409ced901ade0896763c633467 Mon Sep 17 00:00:00 2001 From: Itamar Turner-Trauring Date: Mon, 20 Nov 2023 16:29:01 -0500 Subject: [PATCH] Use modern versions --- .circleci/create-virtualenv.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/create-virtualenv.sh b/.circleci/create-virtualenv.sh index 7327d0859..05ac64490 100755 --- a/.circleci/create-virtualenv.sh +++ b/.circleci/create-virtualenv.sh @@ -46,8 +46,8 @@ export PIP_FIND_LINKS="file://${WHEELHOUSE_PATH}" # setuptools 45 requires Python 3.5 or newer. Even though we upgraded pip # above, it may still not be able to get us a compatible version unless we # explicitly ask for one. -"${PIP}" install --upgrade setuptools==44.0.0 wheel +"${PIP}" install --upgrade setuptools wheel # Just about every user of this image wants to use tox from the bootstrap # virtualenv so go ahead and install it now. -"${PIP}" install "tox~=3.0" +"${PIP}" install "tox~=4.0"