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-08-24 16:15:50 +02:00
parent 94eebc9c2c
commit d9785b36a3
1 changed files with 1 additions and 1 deletions

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