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 1ce6d78 commit 760dad6Copy full SHA for 760dad6
.github/workflows/ci.yml
@@ -74,9 +74,11 @@ jobs:
74
key: ${{ runner.os }}-python-${{ hashFiles('**/poetry.lock') }}
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