Skip to content

Commit

Permalink
Work around pip-tools conflict with pip 22
Browse files Browse the repository at this point in the history
Restrict pip to <22 for now until
jazzband/pip-tools#1558 is fixed.
  • Loading branch information
rra committed Jan 31, 2022
1 parent 2ecb491 commit 53f3720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# which is normally not allowed to appear in a hashed dependency file.
.PHONY: update-deps
update-deps:
pip install --upgrade pip-tools pip setuptools
pip install --upgrade pip-tools 'pip<22' setuptools
pip-compile --upgrade --build-isolation --allow-unsafe --generate-hashes --output-file requirements/main.txt requirements/main.in
pip-compile --upgrade --build-isolation --allow-unsafe --generate-hashes --output-file requirements/dev.txt requirements/dev.in

Expand Down

0 comments on commit 53f3720

Please sign in to comment.