Skip to content

Commit

Permalink
Revert back curl install of poetry in pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
klmp200 committed Nov 15, 2024
1 parent db9f86c commit 5e8d8b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/setup_project/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
- name: Install apt packages
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: gettext pipx
packages: gettext
version: 1.0 # increment to reset cache

- name: Set up python
Expand All @@ -19,12 +19,12 @@ runs:
uses: actions/cache@v3
with:
path: ~/.local
key: poetry-2 # increment to reset cache
key: poetry-3 # increment to reset cache

- name: Install Poetry
if: steps.cached-poetry.outputs.cache-hit != 'true'
shell: bash
run: pipx install poetry
run: curl -sSL https://install.python-poetry.org | python3 -

- name: Check pyproject.toml syntax
shell: bash
Expand Down

0 comments on commit 5e8d8b8

Please sign in to comment.