Skip to content

Commit 3e02039

Browse files
committed
CHORE: Test workaround for Poetry bug
- Got an issue while installing project dependencies on Python 3.12 on CI. Workaround proposed in python-poetry/poetry#7611.
1 parent 7dbcee6 commit 3e02039

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/actions/setup/action.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,7 @@ runs:
1919
cache: "poetry"
2020

2121
- name: Install dependencies
22-
run: poetry install
22+
run: |
23+
poetry config installer.max-workers 1
24+
poetry install
2325
shell: bash

0 commit comments

Comments
 (0)