chore: remove pylint install workaround (#2802)
This commit is contained in:
parent
0f49a11713
commit
c0465f85f4
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue