We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a568fd6 commit 7c5ea4eCopy full SHA for 7c5ea4e
.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