From 62ccea57772861e969519bfd905a9bee7346eb61 Mon Sep 17 00:00:00 2001 From: Pablo Collins Date: Mon, 4 Nov 2024 08:39:57 -0500 Subject: [PATCH] Fix Windows CI Previous version of install-setuptools makefile target was causing the following error in CI: ERROR: To modify pip, please run the following command: python.exe -m pip install --upgrade pip setuptools wheel make: *** [Makefile:15: install-setuptools] Error 1 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index d28cefc6..415ae078 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ install-tox: .PHONY: install-setuptools install-setuptools: - pip install --upgrade pip setuptools wheel + python -m pip install --upgrade pip setuptools wheel .PHONY: install-tools install-tools: install-setuptools install-poetry install-tox @@ -56,7 +56,7 @@ black-check: pylint: poetry run pylint ./splunk_otel ./tests/ ./scripts/ -.PHONY: flake8 +.PHONY: flake8 flake8: poetry run flake8 ./splunk_otel ./tests/ ./scripts/