File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
.github/actions/init-python-env Expand file tree Collapse file tree 2 files changed +7
-1
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 distutils
41+ shell : bash
42+ run : |
43+ sudo apt-get update
44+ sudo apt-get install python3-setuptools -y
45+
4046 - name : Install Poetry project dependencies
4147 # if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
4248 env :
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ publish-scala:
5454
5555init-python :
5656 python -m venv ./.venv
57- poetry run python -m pip install setuptools
57+ poetry run python -m pip install --upgrade setuptools
5858 poetry self add " poetry-dynamic-versioning[plugin]"
5959 poetry install
6060 poetry add pyspark@${SPARK_VERSION}
You can’t perform that action at this time.
0 commit comments