tox: py37-freeze: use --no-use-pep517 for PyInstaller
Fixes https://github.com/pytest-dev/pytest/issues/4750.
This commit is contained in:
parent
5ca81596bb
commit
e191a65ebb
2
tox.ini
2
tox.ini
|
@ -166,7 +166,9 @@ commands =
|
||||||
|
|
||||||
[testenv:py37-freeze]
|
[testenv:py37-freeze]
|
||||||
changedir = testing/freeze
|
changedir = testing/freeze
|
||||||
|
# Disable PEP 517 with pip, which does not work with PyInstaller currently.
|
||||||
deps =
|
deps =
|
||||||
|
--no-use-pep517
|
||||||
pyinstaller
|
pyinstaller
|
||||||
commands =
|
commands =
|
||||||
{envpython} create_executable.py
|
{envpython} create_executable.py
|
||||||
|
|
Loading…
Reference in New Issue