Removes ordered_pip.sh script.

The ordered_pip script was needed to wrangle some dependency ordering
problems that do not exist with the reduced set of dependencies.
This commit is contained in:
Eddie Hebert
2012-10-01 13:32:35 -04:00
parent d176d12d65
commit 75d3578f04
2 changed files with 2 additions and 14 deletions
+2 -2
View File
@@ -10,8 +10,8 @@ source /usr/local/bin/virtualenvwrapper.sh
mkvirtualenv zipline
workon zipline
./etc/ordered_pip.sh ./etc/requirements.txt
./etc/ordered_pip.sh ./etc/requirements_dev.txt
pip install -r ./etc/requirements.txt
pip install -r ./etc/requirements_dev.txt
# Show what we have installed
pip freeze
-12
View File
@@ -1,12 +0,0 @@
#!/bin/bash -e
a=0
while read line
do
if [[ -n "$line" && "$line" != \#* ]] ; then
#echo $line
pip install $line
fi
((a = a + 1))
done < $1
echo "$0: Final package count is $a";