Skip to content

Commit 858a11e

Browse files
committed
Fix Poetry install in CI
1 parent 5166ffa commit 858a11e

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/poetry-build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,11 @@ jobs:
3838

3939

4040
- name: Install Poetry
41-
uses: snok/install-poetry@v1
42-
with:
43-
virtualenvs-create: true
44-
virtualenvs-in-project: true
41+
run: |
42+
python -m pip install --upgrade pip
43+
python -m pip install "poetry==2.3.2"
44+
poetry config virtualenvs.create true
45+
poetry config virtualenvs.in-project true
4546
- name: Load cached venv
4647
id: cached-pip-wheels
4748
uses: actions/cache@v3

0 commit comments

Comments
 (0)