Commit fbf5aeea6b5804a90bad3bafaa08864f776950d7
1 parent
bef553e5
Exists in
master
and in
1 other branch
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,6 +9,7 @@ TARBALL = dist/$(DISTDIR).tar.gz | ||
9 | all: | 9 | all: |
10 | rm -rf ./build | 10 | rm -rf ./build |
11 | virtualenv ./build | 11 | virtualenv ./build |
12 | + ./build/bin/pip install --no-index --find-links=$(DISTDIR) pip==1.5.6 | ||
12 | ./build/bin/pip install --no-index --find-links=$(DISTDIR) --use-wheel -r requirements.txt | 13 | ./build/bin/pip install --no-index --find-links=$(DISTDIR) --use-wheel -r requirements.txt |
13 | ./build/bin/pip install --no-index --find-links=$(DISTDIR) --no-deps -r requirements-colab-plugins.txt | 14 | ./build/bin/pip install --no-index --find-links=$(DISTDIR) --no-deps -r requirements-colab-plugins.txt |
14 | virtualenv --relocatable ./build | 15 | virtualenv --relocatable ./build |
@@ -37,5 +38,6 @@ distclean: | @@ -37,5 +38,6 @@ distclean: | ||
37 | 38 | ||
38 | downloadtar: | 39 | downloadtar: |
39 | mkdir -p $(DISTDIR) | 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 | pip install --download $(DISTDIR) -r requirements.txt | 42 | pip install --download $(DISTDIR) -r requirements.txt |
41 | pip install --download $(DISTDIR) -r requirements-colab-plugins.txt --no-deps | 43 | pip install --download $(DISTDIR) -r requirements-colab-plugins.txt --no-deps |