Skip to content

Commit

Permalink
MAINT: Remove last remnants of ordered_pip
Browse files Browse the repository at this point in the history
  • Loading branch information
richafrank committed Feb 11, 2020
1 parent 0dc7d39 commit 555d1df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 deletions.
12 changes: 0 additions & 12 deletions etc/ordered_pip.sh

This file was deleted.

6 changes: 2 additions & 4 deletions vagrant_init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,9 @@ echo "Installing pip and setuptools..." | tee -a "$VAGRANT_LOG"
wget https://bootstrap.pypa.io/get-pip.py 2>&1 | tee -a "$VAGRANT_LOG"
python get-pip.py 2>&1 >> "$VAGRANT_LOG" | tee -a "$VAGRANT_LOG"
echo "Installing zipline python dependencies..." | tee -a "$VAGRANT_LOG"
/vagrant/etc/ordered_pip.sh /vagrant/etc/requirements.txt 2>&1 | tee -a "$VAGRANT_LOG"
echo "Installing zipline extra python dependencies..." | tee -a "$VAGRANT_LOG"
pip install -r /vagrant/etc/requirements_dev.txt -r /vagrant/etc/requirements_blaze.txt 2>&1 | tee -a "$VAGRANT_LOG"
pip install -r /vagrant/etc/requirements.in -r 2>&1 /vagrant/etc/requirements_dev.in -c /vagrant/etc/requirements.txt | tee -a "$VAGRANT_LOG"
echo "Installing zipline package itself..." | tee -a "$VAGRANT_LOG"
# Clean out any cython assets. The pip install re-builds them.
find /vagrant/ -type f -name '*.c' -exec rm {} +
pip install -e /vagrant[all] 2>&1 | tee -a "$VAGRANT_LOG"
pip install -e /vagrant[all] -c /vagrant/etc/requirements.txt 2>&1 | tee -a "$VAGRANT_LOG"
echo "Finished! zipline repo is in '/vagrant'." | tee -a "$VAGRANT_LOG"

0 comments on commit 555d1df

Please sign in to comment.