Skip to content

Commit

Permalink
CHORE: Test workaround for Poetry bug
Browse files Browse the repository at this point in the history
- Got an issue while installing project dependencies on Python 3.12 on CI.
  Workaround proposed in python-poetry/poetry#7611.
  • Loading branch information
truhanen committed Oct 29, 2023
1 parent 7dbcee6 commit 3e02039
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,7 @@ runs:
cache: "poetry"

- name: Install dependencies
run: poetry install
run: |
poetry config installer.max-workers 1
poetry install
shell: bash

0 comments on commit 3e02039

Please sign in to comment.