pyinstaller binary: do not exclude ssl, needed for pyfuse3/trio, fixes #9196

This commit is contained in:
Thomas Waldmann 2026-02-14 15:02:24 +01:00
parent f98257d4cb
commit a3dbdda264
No known key found for this signature in database
GPG key ID: 243ACFA951F78E01

View file

@ -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,