From a447782963546e13b8395f5a0dd6242496eb813c Mon Sep 17 00:00:00 2001 From: Kristof Bajnok Date: Tue, 17 Jun 2025 17:25:29 +0200 Subject: [PATCH] Makefile: setuptools should be installed in the venv --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a5629c5..31bb90a 100644 --- a/Makefile +++ b/Makefile @@ -61,7 +61,7 @@ venv: $(VIRTUALENV)/bin/python3 .PHONY: release release: make venv VIRTUALENV=$(RELEASE_TEST_VENV) - $(RELEASE_TEST_VENV)/bin/pip3 install wheel + $(RELEASE_TEST_VENV)/bin/pip3 install wheel setuptools $(RELEASE_TEST_VENV)/bin/python3 setup.py sdist bdist_wheel $(RELEASE_TEST_VENV)/bin/pip install dist/*.whl $(RELEASE_TEST_VENV)/bin/pip3 install -r requirements-dev.txt