Skip to content

Commit

Permalink
fix: Actually install pip.txt when installing requirements (#905)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
timmc-edx authored Sep 26, 2023
1 parent b96fc82 commit b822772
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.*

Expand Down

0 comments on commit b822772

Please sign in to comment.