From d9785b36a3fe15b07486461188e20a2632d3c76a Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Mon, 24 Aug 2020 16:15:50 +0200 Subject: [PATCH] testing: Replace deprecated/removed `pip install --download` command It was deprecated for a while and has been replaced by `pip download`. --- testing/scripts/recipes/015_strongTNC.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/scripts/recipes/015_strongTNC.mk b/testing/scripts/recipes/015_strongTNC.mk index 419d60bb17..4e2925ff0d 100644 --- a/testing/scripts/recipes/015_strongTNC.mk +++ b/testing/scripts/recipes/015_strongTNC.mk @@ -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 -- 2.47.2