From b822772362f9884bb2a453e3775a4900c4c2b95b Mon Sep 17 00:00:00 2001 From: Tim McCormack Date: Tue, 26 Sep 2023 10:16:44 -0400 Subject: [PATCH] fix: Actually install pip.txt when installing requirements (#905) We were creating pip.txt but not using it, which eventually leads to errors when pip-tools falls out of sync with the system pip. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 0edd41d7..7e514aff 100644 --- a/Makefile +++ b/Makefile @@ -65,6 +65,7 @@ quality: ## check coding style with pycodestyle and pylint isort --recursive --check-only submission_queue/ xqueue/ requirements: ## install development environment requirements + pip install -qr requirements/pip.txt pip install -qr requirements/pip-tools.txt --exists-action w pip-sync requirements/dev.txt requirements/private.*