Skip to content

Commit

Permalink
Fixed #45 make pip broken
Browse files Browse the repository at this point in the history
  • Loading branch information
pauloxnet committed Jan 23, 2019
1 parent 8b98bad commit 949b5fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ test:

dev:
( \
pip install -U pip pip-tools; \
pip install -U pip==18.1 pip-tools; \
pip-sync requirements/dev.txt; \
)

# to pass optional parameters use as: make pip p='-P requests'
pip:
( \
pip install -U pip pip-tools; \
pip install -U pip==18.1 pip-tools; \
pip-compile $(p) --output-file requirements/common.txt requirements/common.ini; \
pip-compile $(p) --output-file requirements/dev.txt requirements/dev.ini; \
pip-compile $(p) --output-file requirements/prod.txt requirements/prod.ini; \
Expand Down

0 comments on commit 949b5fe

Please sign in to comment.