1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-23 08:16:54 +00:00

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

View file

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