File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed
.github/actions/init-python-env Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 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 :
Original file line number Diff line number Diff line change @@ -54,7 +54,10 @@ publish-scala:
5454
5555init-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}
You can’t perform that action at this time.
0 commit comments