We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f334f6b commit 5ce3eecCopy full SHA for 5ce3eec
.github/actions/python-environment/action.yml
@@ -39,9 +39,14 @@ runs:
39
python-version: ${{ inputs.python-version }}
40
cache: ${{ inputs.use-cache == 'true' && 'poetry' || '' }}
41
42
+ - name: Ensure curl
43
+ shell: bash
44
+ run: sudo apt update && sudo apt install -y curl
45
+
46
47
- name: Set up Poetry (${{ inputs.poetry-version }})
48
shell: bash
- run: pipx install poetry==${{ inputs.poetry-version }}
49
+ run: curl -sSL https://install.python-poetry.org | POETRY_VERSION=${{ inputs.poetry-version }} python3 -
50
51
- name: Poetry install with extras
52
working-directory: ${{ inputs.working-directory }}
0 commit comments