Skip to content

Commit e7b6296

Browse files
PySide6 now excluded from PyInstaller (#2331)
2 parents da6382a + cecc058 commit e7b6296

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#2330: The PySide6 module is now excluded when building via PyInstaller due to hook clashes

packaging/PackageWithPyInstaller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def add_optional_arguments(run_options):
8989

9090

9191
def add_exclude_modules(run_options):
92-
excludes = ['matplotlib', 'dask', 'pandas']
92+
excludes = ['matplotlib', 'dask', 'pandas', 'PySide6']
9393
for exclude in excludes:
9494
run_options.extend(['--exclude-module', exclude])
9595

0 commit comments

Comments
 (0)