Commit c638579cd1c5a8c5d84552f2338cf428cba1257b
Committed by
Sergio Oliveira
1 parent
93e96208
Exists in
master
and in
2 other branches
Upgrade pip in colab-deps
Signed-off-by: Alexandre Barbosa <alexandreab@live.com> Signed-off-by: Lucas Moura <lucas.moura128@gmail.com> Signed-off-by: Macartur Sousa <macartur.sc@gmail.com>
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
Makefile
... | ... | @@ -9,6 +9,7 @@ TARBALL = dist/$(DISTDIR).tar.gz |
9 | 9 | all: |
10 | 10 | rm -rf ./build |
11 | 11 | virtualenv ./build |
12 | + ./build/bin/pip install --no-index --find-links=$(DISTDIR) pip==1.5.6 | |
12 | 13 | ./build/bin/pip install --no-index --find-links=$(DISTDIR) --use-wheel -r requirements.txt |
13 | 14 | ./build/bin/pip install --no-index --find-links=$(DISTDIR) --no-deps -r requirements-colab-plugins.txt |
14 | 15 | virtualenv --relocatable ./build |
... | ... | @@ -37,5 +38,6 @@ distclean: |
37 | 38 | |
38 | 39 | downloadtar: |
39 | 40 | mkdir -p $(DISTDIR) |
41 | + wget https://pypi.python.org/packages/source/p/pip/pip-1.5.6.tar.gz -O $(DISTDIR)/pip-1.5.6.tar.gz | |
40 | 42 | pip install --download $(DISTDIR) -r requirements.txt |
41 | 43 | pip install --download $(DISTDIR) -r requirements-colab-plugins.txt --no-deps | ... | ... |