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:
Tobias Brunner
2020-09-03 13:34:19 +02:00
parent 94eebc9c2c
commit d9785b36a3
+1 -1
View File
@@ -15,7 +15,7 @@ $(PKG)-master: $(ZIP)
$(DEPS): $(PKG)-master
mkdir -p $(DEPS)
pip install --download $(DEPS) -r $(PKG)-master/requirements.txt
pip download -d $(DEPS) -r $(PKG)-master/requirements.txt
install: $(DEPS)
pip install --no-index --find-links=file://`pwd`/$(DEPS) -r $(PKG)-master/requirements.txt