Skip to content

Commit

Permalink
Pin setuptools and use it
Browse files Browse the repository at this point in the history
  • Loading branch information
fauust committed Jul 29, 2024
1 parent 8c999cb commit cf04fc3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,11 @@ venv: ## Create python3 venv if it does not exists

install-pip-packages: ## Install python3 requirements
$(info --> Install requirements via `pip`)
uv pip install wheel
uv pip install -r requirements.txt
# //TEMP needed because of
# https://github.com/astral-sh/uv/issues/5551
# https://github.com/pypa/setuptools/issues/4519
uv pip install setuptools==71.0.0
uv pip install --no-build-isolation -r requirements.txt

install-vlad-bb-fork: ## Install vlad bb fork
$(info --> Install vlad's bb fork)
Expand Down

0 comments on commit cf04fc3

Please sign in to comment.