Commit 6671bf5af3728dd4e6b6542156a2d2c338544918

Authored by Lucas Kanashiro
Committed by Sergio Oliveira
1 parent f50b2484

Download colab plugins in downloadtar target

Signed-off-by: Lucas Kanashiro <kanashiro.duarte@gmail.com>
Signed-off-by: Lucas Moura <lucas.moura128@gmail.com>
Showing 1 changed file with 4 additions and 2 deletions   Show diff stats
@@ -12,7 +12,7 @@ all: @@ -12,7 +12,7 @@ all:
12 clean: 12 clean:
13 $(RM) -r ./build 13 $(RM) -r ./build
14 14
15 -SOURCES = Makefile requirements.txt *.tar.* *.whl 15 +SOURCES = Makefile requirements.txt *.tar.* *.whl *.zip
16 16
17 install: 17 install:
18 mkdir -p $$(dirname $(TARGET)) 18 mkdir -p $$(dirname $(TARGET))
@@ -33,7 +33,9 @@ $(TARBALL): @@ -33,7 +33,9 @@ $(TARBALL):
33 $(RM) -r $(DISTDIR) 33 $(RM) -r $(DISTDIR)
34 34
35 distclean: 35 distclean:
36 - $(RM) -r $$(dirname $(TARBALL)) 36 + $(RM) -r $$(dirname $(TARBALL)) src/
  37 + $(RM) --verbose *.tar.* *.whl *.zip
37 38
38 downloadtar: 39 downloadtar:
39 pip install --download $(CURDIR) -r requirements.txt 40 pip install --download $(CURDIR) -r requirements.txt
  41 + pip install --download $(CURDIR) -r requirements-colab-plugins.txt --no-deps