Skip to content

Commit 9e90141

Browse files
committed
Attempt to force update pip
1 parent 9ef3b40 commit 9e90141

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.github/actions/init-python-env/action.yaml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,6 @@ runs:
3737
python-version: ${{ inputs.python_version }}
3838
cache: 'poetry'
3939

40-
- name: Install Poetry (fixed)
41-
shell: bash
42-
run: |
43-
pipx uninstall poetry || true
44-
pipx install poetry
45-
pipx inject poetry "setuptools<80"
46-
4740
- name: Install Poetry project dependencies
4841
# if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
4942
env:

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,10 @@ publish-scala:
5454

5555
init-python:
5656
python -m venv ./.venv
57-
./.venv/bin/python -m pip install --upgrade pip
57+
./.venv/bin/python -m pip install --upgrade pip==25.3
58+
./.venv/bin/python -m pip install setuptools
59+
poetry run python -m pip install --upgrade pip==25.3
60+
poetry run python -m pip install setuptools
5861
poetry self add "poetry-dynamic-versioning[plugin]"
5962
poetry install
6063
poetry add pyspark@${SPARK_VERSION}

0 commit comments

Comments
 (0)