Skip to content

Commit dffd369

Browse files
committed
Try disabling Poetry experimental installer
1 parent 8c1f0ed commit dffd369

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

tox.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ deps =
1919

2020
[testenv:lint]
2121
commands =
22+
# For compatibility with Python 3.10.
23+
# See https://github.com/python-poetry/poetry/issues/4210.
24+
poetry config experimental.new-installer false
2225
poetry install -q
2326
poetry run flake8
2427
poetry run isort --check-only --diff

tox_install.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/bin/sh
22
set -e
33

4+
# For compatibility with Python 3.10.
5+
# See https://github.com/python-poetry/poetry/issues/4210.
6+
poetry config experimental.new-installer false
47
poetry install
58

69
if [ ! -z "$@" ]

0 commit comments

Comments
 (0)