We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4ff0d0 commit d39424fCopy full SHA for d39424f
2 files changed
.github/actions/init-python-env/action.yaml
@@ -37,6 +37,12 @@ runs:
37
python-version: ${{ inputs.python_version }}
38
cache: 'poetry'
39
40
+ - name: Install distutils
41
+ shell: bash
42
+ run: |
43
+ sudo apt-get update
44
+ sudo apt-get install python3-setuptools -y
45
+
46
- name: Install Poetry project dependencies
47
# if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
48
env:
Makefile
@@ -54,7 +54,7 @@ publish-scala:
54
55
init-python:
56
python -m venv ./.venv
57
- poetry run python -m pip install setuptools
+ poetry run python -m pip install --upgrade setuptools
58
poetry self add "poetry-dynamic-versioning[plugin]"
59
poetry install
60
poetry add pyspark@${SPARK_VERSION}
0 commit comments