Skip to content

Commit 36eb893

Browse files
committed
ci: Update Poetry version in build workflow
When using 1.1.15 on Python 3.12+ we get an error when building: ModuleNotFoundError: No module named 'six.moves' Since we dropped Python 3.6 support, we no longer need to use this old 1.1.15 version anyway, so update to the latest 1.x version. 2.0 should ok too, but it brings more deprecations due to PEP 621 support.
1 parent 1f259c1 commit 36eb893

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
python-version: ${{ matrix.python-version }}
3131
- name: Install Poetry
3232
run: |
33-
curl -sSL https://install.python-poetry.org | python - -y --version 1.1.15
33+
curl -sSL https://install.python-poetry.org | python - -y --version 1.8.5
3434
- name: Install dependencies
3535
run: |
3636
poetry config virtualenvs.create false

0 commit comments

Comments
 (0)