mirror of
https://github.com/borgbackup/borg.git
synced 2026-04-15 21:59:58 -04:00
pyinstaller binary: do not exclude ssl, needed for pyfuse3/trio, fixes #9196
This commit is contained in:
parent
f98257d4cb
commit
a3dbdda264
1 changed files with 1 additions and 1 deletions
|
|
@ -26,7 +26,7 @@ a = Analysis([os.path.join(basepath, 'src', 'borg', '__main__.py'), ],
|
|||
hookspath=[],
|
||||
runtime_hooks=[],
|
||||
excludes=[
|
||||
'_ssl', 'ssl',
|
||||
# '_ssl', 'ssl', # do not exclude these, needed for pyfuse3/trio
|
||||
'pkg_resources', # avoid pkg_resources related warnings
|
||||
],
|
||||
win_no_prefer_redirects=False,
|
||||
|
|
|
|||
Loading…
Reference in a new issue