Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/release_notes/next/dev-2330-PyInstaller-Qt-Bindings
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#2330: The PySide6 module is now excluded when building via PyInstaller due to hook clashes
2 changes: 1 addition & 1 deletion packaging/PackageWithPyInstaller.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def add_optional_arguments(run_options):


def add_exclude_modules(run_options):
excludes = ['matplotlib', 'dask', 'pandas']
excludes = ['matplotlib', 'dask', 'pandas', 'PySide6']
for exclude in excludes:
run_options.extend(['--exclude-module', exclude])

Expand Down
Loading