Skip to content

Commit

Permalink
Fixed #49 Update pip-tools version
Browse files Browse the repository at this point in the history
Updated pip-tools version after it's last release that support pip 19.0 
and remove version constrain in Makefile.
  • Loading branch information
pauloxnet committed Jan 25, 2019
1 parent f2f3ddf commit b790552
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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==18.1 pip-tools; \
pip install -U pip pip-tools; \
pip-sync requirements/dev.txt; \
)

# to pass optional parameters use as: make pip p='-P requests'
pip:
( \
pip install -U pip==18.1 pip-tools; \
pip install -U pip 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
2 changes: 1 addition & 1 deletion requirements/dev.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ django-debug-toolbar==1.11
invoke==1.2.0
ipdb==0.11
isort==4.3.4
pip-tools==3.2.0
pip-tools==3.3.1

0 comments on commit b790552

Please sign in to comment.