There was an error while loading. Please reload this page.
1 parent 4c88a76 commit 2dc8be9Copy full SHA for 2dc8be9
.github/workflows/ci.yml
@@ -74,9 +74,11 @@ jobs:
74
key: ${{ runner.os }}-python-${{ hashFiles('**/pyproject.toml') }}
75
restore-keys: |
76
${{ runner.os }}-python-
77
- - run: |
78
- poetry config virtualenvs.create false &&
79
- poetry install
+ # Disabling experimental installer for compatibility with Python 3.10.
+ # See https://github.com/python-poetry/poetry/issues/4210.
+ - run: poetry config experimental.new-installer false
80
+ - run: poetry config virtualenvs.create false
81
+ - run: poetry install
82
- run: poetry run django-admin runserver --settings=tests.settings.production --pythonpath=. &
83
# Docs website build.
84
- run: poetry run mkdocs build --strict
0 commit comments