From 414062719d3853af622296eb43f5d2a34c90c813 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Koci=C3=A1n?= Date: Thu, 24 May 2018 22:12:19 +0200 Subject: [PATCH] =?UTF-8?q?Opraven=20nefunk=C4=8Dn=C3=AD=20odkaz=20na=20st?= =?UTF-8?q?a=C5=BEen=C3=AD=20virtualenv?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d8ebc755..365b81c9 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY: clean_env init_env clean_virtualenv install_packages clean install run all schema_seminar.pdf schema_all.pdf sync_test_media sync_test_db sync_test sync_local_media sync_local_db sync_local PYTHON=python2.7 -VE_VER=13.1.2 +VE_VER=16.0.0 LOCAL_PYTHON=bin/python all: install @@ -33,7 +33,9 @@ ${LOCAL_PYTHON}: virtualenv # directory name virtualenv: - curl -O https://pypi.python.org/packages/source/v/virtualenv/virtualenv-${VE_VER}.tar.gz + # I could not find a link without hash anymore. This will probably break in + # the future. + curl -O https://files.pythonhosted.org/packages/33/bc/fa0b5347139cd9564f0d44ebd2b147ac97c36b2403943dbee8a25fd74012/virtualenv-16.0.0.tar.gz tar xvfz virtualenv-${VE_VER}.tar.gz mv -T virtualenv-${VE_VER} virtualenv rm virtualenv-${VE_VER}.tar.gz