testing: Replace deprecated/removed pip install --download command
It was deprecated for a while and has been replaced by `pip download`.
This commit is contained in:
@@ -15,7 +15,7 @@ $(PKG)-master: $(ZIP)
|
|||||||
|
|
||||||
$(DEPS): $(PKG)-master
|
$(DEPS): $(PKG)-master
|
||||||
mkdir -p $(DEPS)
|
mkdir -p $(DEPS)
|
||||||
pip install --download $(DEPS) -r $(PKG)-master/requirements.txt
|
pip download -d $(DEPS) -r $(PKG)-master/requirements.txt
|
||||||
|
|
||||||
install: $(DEPS)
|
install: $(DEPS)
|
||||||
pip install --no-index --find-links=file://`pwd`/$(DEPS) -r $(PKG)-master/requirements.txt
|
pip install --no-index --find-links=file://`pwd`/$(DEPS) -r $(PKG)-master/requirements.txt
|
||||||
|
|||||||
Reference in New Issue
Block a user