Skip to content

Commit

Permalink
Fix interrogate missing setuptools on Python 3.12
Browse files Browse the repository at this point in the history
Should be factored out of this PR
  • Loading branch information
ekilmer committed Oct 27, 2023
1 parent 66548fc commit 0354af1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion {{cookiecutter.project_slug}}/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ run: $(VENV)/pyvenv.cfg
$(VENV)/pyvenv.cfg: pyproject.toml
# Create our Python 3 virtual environment
python3 -m venv env
$(VENV_BIN)/python -m pip install --upgrade pip
# TODO(ekilmer): interrogate needs setuptools from 3.12+
$(VENV_BIN)/python -m pip install --upgrade pip setuptools
$(VENV_BIN)/python -m pip install -e .[$(INSTALL_EXTRA)]

.PHONY: lint
Expand Down

0 comments on commit 0354af1

Please sign in to comment.