From 99ecffdb424d25789b628a028c56cbb5224068cd Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Thu, 29 May 2014 13:18:00 -0400 Subject: [PATCH] BLD: Remove deprecated pip --use-mirrors flag. With release 1.5 pip deprecated the --use-mirrors flag, since that release the flag is a noop and raises a deprecation warning. --- etc/ordered_pip.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/ordered_pip.sh b/etc/ordered_pip.sh index e63e069b..fc1a210b 100755 --- a/etc/ordered_pip.sh +++ b/etc/ordered_pip.sh @@ -4,7 +4,7 @@ a=0 while read line do if [[ -n "$line" && "$line" != \#* ]] ; then - pip install --use-mirrors $line + pip install $line fi ((a = a + 1)) done < $1