Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
Add --process-dependency-links flags to pip calls in Makefile
Browse files Browse the repository at this point in the history
Needed for our temporary pylxd dependency change to work properly
  • Loading branch information
Virgil Dupras committed Jun 4, 2017
1 parent 96f4d78 commit 828f610
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@

install:
pip install -r requirements-dev.txt
pip install -e .
# Temporary while we need a dev version of pylxd
pip install --process-dependency-links -e .

upgrade:
pip install -r requirements-dev.txt -U
pip install -e . -U
# Temporary while we need a dev version of pylxd
pip install --process-dependency-links -e . -U

lint:
flake8
Expand Down

0 comments on commit 828f610

Please sign in to comment.