Fix binary builds (#3840)

See https://github.com/pypa/setuptools/issues/1963 for details.
This commit is contained in:
Maximilian Hils 2020-02-28 17:42:00 +01:00 committed by GitHub
parent cc5fa2d0ef
commit c284d595a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
# flake8: noqa
# temporary fix for https://github.com/pypa/setuptools/issues/1963
# can be removed when we upgrade to PyInstaller 3.7.
hiddenimports = collect_submodules('pkg_resources._vendor')
hiddenimports.append('pkg_resources.py2_warn')
excludedimports = ['__main__']