From c0465f85f4769331e70083f5fedae41121a68f1f Mon Sep 17 00:00:00 2001 From: Jonas L Date: Mon, 18 Dec 2023 19:21:57 +0100 Subject: [PATCH] chore: remove pylint install workaround (#2802) --- tools/python.mk | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/python.mk b/tools/python.mk index dfdfef6ca..deb20d60c 100644 --- a/tools/python.mk +++ b/tools/python.mk @@ -8,15 +8,11 @@ CPU_CORES := $(shell N=$$(nproc); echo $$(( $$N > 4 ? 4 : $$N ))) # BANDIT_ARG = # PYTEST_ARG = -# SETUPTOOLS_ENABLE_FEATURES=legacy-editable is required to work -# around https://github.com/PyCQA/pylint/issues/7306 VENV = .venv install: $(VENV) $(VENV): python3 -m venv $(VENV) $(VENV)/bin/pip install --upgrade pip setuptools wheel - - SETUPTOOLS_ENABLE_FEATURES=legacy-editable \ $(VENV)/bin/pip install \ --requirement ../tools/python-requirements.txt \ $(PIP_INSTALL)