From: Ɓukasz Langa Date: Wed, 9 May 2018 23:05:12 +0000 (-0700) Subject: Travis workaround script no longer necessary X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/6a01b764195e9ddd655c63a5c110e4a6e71a035e?ds=inline;pf=etc Travis workaround script no longer necessary --- 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)"