File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -67,16 +67,15 @@ jobs:
67
67
python-version : " 3.10"
68
68
- uses : Gr1n/setup-poetry@v7
69
69
with :
70
- poetry-version : ' 1.1.10'
70
+ # Using pre-release to work around Python 3.10 compatibility issue.
71
+ # See https://github.com/python-poetry/poetry/issues/4210.
72
+ poetry-version : ' 1.2.0a2'
71
73
- uses : actions/cache@v2
72
74
with :
73
75
path : ~/.cache/pip
74
76
key : ${{ runner.os }}-python-py310-${{ hashFiles('**/pyproject.toml') }}
75
77
restore-keys : |
76
78
${{ runner.os }}-python-py310-
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
79
- run : poetry config virtualenvs.create false
81
80
- run : poetry install
82
81
- run : poetry run django-admin runserver --settings=tests.settings.production --pythonpath=. &
You can’t perform that action at this time.
0 commit comments