mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 00:07:38 +00:00
pyinstaller: work around issue with setuptools > 44
see https://github.com/pypa/setuptools/issues/1963
This commit is contained in:
parent
49e21b2754
commit
c75a7e4156
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue