From 753185c5b081b63eabe0262640ab3e3e5e3de7cd Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 2 Apr 2023 07:17:17 +0200 Subject: [PATCH] build: remove Python pip `--no-user` option Python pip no longer has a `--no-user` option. Refs: https://github.com/nodejs/build/issues/3273 Refs: https://github.com/pypa/pip/pull/5116/files PR-URL: https://github.com/nodejs/node/pull/47372 Reviewed-By: Debadree Chatterjee Reviewed-By: Moshe Atlow Reviewed-By: Colin Ihrig Reviewed-By: Richard Lau --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 0be0659d372d2d..85222f00ce5b86 100644 --- a/Makefile +++ b/Makefile @@ -1518,8 +1518,8 @@ cpplint: lint-cpp # Try with '--system' if it fails without; the system may have set '--user' lint-py-build: $(info Pip installing flake8 linter on $(shell $(PYTHON) --version)...) - $(PYTHON) -m pip install --no-user --upgrade -t tools/pip/site-packages flake8 || \ - $(PYTHON) -m pip install --no-user --upgrade --system -t tools/pip/site-packages flake8 + $(PYTHON) -m pip install --upgrade -t tools/pip/site-packages flake8 || \ + $(PYTHON) -m pip install --upgrade --system -t tools/pip/site-packages flake8 .PHONY: lint-py ifneq ("","$(wildcard tools/pip/site-packages/flake8)") @@ -1538,8 +1538,8 @@ endif # Try with '--system' if it fails without; the system may have set '--user' lint-yaml-build: $(info Pip installing yamllint on $(shell $(PYTHON) --version)...) - $(PYTHON) -m pip install --no-user --upgrade -t tools/pip/site-packages yamllint || \ - $(PYTHON) -m pip install --no-user --upgrade --system -t tools/pip/site-packages yamllint + $(PYTHON) -m pip install --upgrade -t tools/pip/site-packages yamllint || \ + $(PYTHON) -m pip install --upgrade --system -t tools/pip/site-packages yamllint .PHONY: lint-yaml # Lints the YAML files with yamllint.