From 171716bd57cdb6bb00259281bf191a860b8815bb Mon Sep 17 00:00:00 2001 From: Eric Kilmer Date: Thu, 2 May 2024 17:24:21 -0400 Subject: [PATCH] Remove note about interrogate requiring setuptools (#25) New releases have been made and this is fixed on Python 3.12 --- {{cookiecutter.project_slug}}/Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/{{cookiecutter.project_slug}}/Makefile b/{{cookiecutter.project_slug}}/Makefile index 8925f57..7169826 100644 --- a/{{cookiecutter.project_slug}}/Makefile +++ b/{{cookiecutter.project_slug}}/Makefile @@ -52,9 +52,6 @@ run: $(VENV)/pyvenv.cfg $(VENV)/pyvenv.cfg: pyproject.toml # Create our Python 3 virtual environment python3 -m venv env - # NOTE(ekilmer): interrogate v1.5.0 needs setuptools when using Python 3.12+. - # This should be fixed when the next release is made - $(VENV_BIN)/python -m pip install --upgrade pip setuptools $(VENV_BIN)/python -m pip install -e .[$(INSTALL_EXTRA)] .PHONY: lint