pyinstaller: work around issue with setuptools > 44

see https://github.com/pypa/setuptools/issues/1963
This commit is contained in:
Thomas Waldmann 2020-04-18 23:01:24 +02:00
parent 49e21b2754
commit c75a7e4156
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ if is_win32:
hiddenimports = []
else:
basepath = '/vagrant/borg/borg'
hiddenimports = ['borg.platform.posix']
hiddenimports = ['borg.platform.posix', 'pkg_resources.py2_warn', ]
block_cipher = None