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 8c1f0ed commit dffd369Copy full SHA for dffd369
tox.ini
@@ -19,6 +19,9 @@ deps =
19
20
[testenv:lint]
21
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
25
poetry install -q
26
poetry run flake8
27
poetry run isort --check-only --diff
tox_install.sh
@@ -1,6 +1,9 @@
1
#!/bin/sh
2
set -e
3
4
+# For compatibility with Python 3.10.
5
+# See https://github.com/python-poetry/poetry/issues/4210.
6
+poetry config experimental.new-installer false
7
poetry install
8
9
if [ ! -z "$@" ]
0 commit comments