There was an error while loading. Please reload this page.
1 parent f8af96c commit ecaa405Copy full SHA for ecaa405
.github/workflows/docs.yml
@@ -36,11 +36,14 @@ jobs:
36
python-version: '3.11'
37
38
- name: Install Poetry
39
- uses: snok/install-poetry@v1
40
- with:
41
- version: latest
42
- virtualenvs-create: true
43
- virtualenvs-in-project: true
+ run: |
+ curl -sSL https://install.python-poetry.org | python - -y
+ echo "$HOME/.local/bin" >> $GITHUB_PATH
+
+ - name: Configure Poetry
44
45
+ poetry config virtualenvs.create true
46
+ poetry config virtualenvs.in-project true
47
48
- name: Load cached venv
49
id: cached-poetry-dependencies
0 commit comments