From 6a01b764195e9ddd655c63a5c110e4a6e71a035e Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C5=81ukasz=20Langa?= Date: Wed, 9 May 2018 16:05:12 -0700 Subject: [PATCH] Travis workaround script no longer necessary --- .travis_py37_workaround.sh | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .travis_py37_workaround.sh diff --git a/.travis_py37_workaround.sh b/.travis_py37_workaround.sh deleted file mode 100644 index 3ad00cd..0000000 --- a/.travis_py37_workaround.sh +++ /dev/null @@ -1,16 +0,0 @@ -echo "The ready-made virtualenv is not the one we want. Deactivating..." -deactivate - -echo "Installing 3.7 from deadsnakes..." -sudo apt-get --yes install python3.7 - -echo "Creating a fresh virtualenv. We can't use `ensurepip` because Debian." -python3.7 -m venv ~/virtualenv/python3.7-deadsnakes --without-pip -source ~/virtualenv/python3.7-deadsnakes/bin/activate - -echo "We ensure our own pip." -curl -sSL https://bootstrap.pypa.io/get-pip.py | python3.7 - -echo -echo "Python version:" -python3.7 -c "import sys; print(sys.version)" -- 2.39.2