Skip to content

Commit

Permalink
Fix Windows CI
Browse files Browse the repository at this point in the history
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
  • Loading branch information
pmcollins committed Nov 4, 2024
1 parent 8f68c9a commit 62ccea5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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/

Expand Down

0 comments on commit 62ccea5

Please sign in to comment.