Skip to content

Commit a5a5641

Browse files
authored
Merge pull request #43 from contextmachine/codex/fix-poetry-installation-failure
2 parents 5166ffa + 858a11e commit a5a5641

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)