From 52fc973eada7c5ac3b76e5412ffa031c1a00abea Mon Sep 17 00:00:00 2001 From: link2xt Date: Wed, 22 Jun 2022 13:05:06 +0000 Subject: [PATCH] scripts/run_all.sh cleanup There is no need to add symlinks to /bin, /usr/local/bin containing all python versions is already in the PATH of manylinux container. --- scripts/run_all.sh | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/scripts/run_all.sh b/scripts/run_all.sh index 8610a5af9..28e3371bf 100755 --- a/scripts/run_all.sh +++ b/scripts/run_all.sh @@ -5,7 +5,6 @@ set -e -x # Perform clean build of core and install. -export TOXWORKDIR=.docker-tox # compile core lib @@ -21,17 +20,8 @@ export DCC_RS_TARGET=release # needed by tox below. export PATH=$PATH:/opt/python/cp37-cp37m/bin export PYTHONDONTWRITEBYTECODE=1 -pushd /bin -rm -f python3.7 -ln -s /opt/python/cp37-cp37m/bin/python3.7 -rm -f python3.8 -ln -s /opt/python/cp38-cp38/bin/python3.8 -rm -f python3.9 -ln -s /opt/python/cp39-cp39/bin/python3.9 -rm -f python3.10 -ln -s /opt/python/cp310-cp310/bin/python3.10 -popd +TOXWORKDIR=.docker-tox pushd python # prepare a clean tox run rm -rf tests/__pycache__