Skip to content

Commit 760dad6

Browse files
committed
Disable experimental installer in site build
1 parent 1ce6d78 commit 760dad6

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,11 @@ jobs:
7474
key: ${{ runner.os }}-python-${{ hashFiles('**/poetry.lock') }}
7575
restore-keys: |
7676
${{ runner.os }}-python-
77-
- run: |
78-
poetry config virtualenvs.create false &&
79-
poetry install
77+
# Disabling experimental installer for compatibility with Python 3.10.
78+
# See https://github.com/python-poetry/poetry/issues/4210.
79+
- run: poetry config experimental.new-installer false
80+
- run: poetry config virtualenvs.create false
81+
- run: poetry install
8082
- run: poetry run django-admin runserver --settings=tests.settings.production --pythonpath=. &
8183
# Docs website build.
8284
- run: poetry run mkdocs build --strict

0 commit comments

Comments
 (0)