Skip to content

Commit 02249e3

Browse files
committed
win/mac build: don't exclude QtNetwork, as it is needed by QtMultimedia (used for camera)
fixes #9949 follow-up b6e4ec8
1 parent f366f3e commit 02249e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contrib/build-wine/pyinstaller.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ datas += copy_metadata('slip10') # from trezor->slip10
5656
excludes = [
5757
"PyQt6.QtBluetooth",
5858
"PyQt6.QtDesigner",
59-
"PyQt6.QtNetwork",
6059
"PyQt6.QtNfc",
6160
"PyQt6.QtPositioning",
6261
"PyQt6.QtQml",
@@ -73,6 +72,7 @@ excludes = [
7372
"PyQt6.QtWebChannel",
7473
"PyQt6.QtWebSockets",
7574
"PyQt6.QtXml",
75+
# "PyQt6.QtNetwork", # needed by QtMultimedia. kinda weird but ok.
7676
]
7777

7878
# We don't put these files in to actually include them in the script but to make the Analysis method scan them for imports

contrib/osx/pyinstaller.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ datas += copy_metadata('slip10') # from trezor->slip10
5959
excludes = [
6060
"PyQt6.QtBluetooth",
6161
"PyQt6.QtDesigner",
62-
"PyQt6.QtNetwork",
6362
"PyQt6.QtNfc",
6463
"PyQt6.QtPositioning",
6564
"PyQt6.QtQml",
@@ -76,6 +75,7 @@ excludes = [
7675
"PyQt6.QtWebChannel",
7776
"PyQt6.QtWebSockets",
7877
"PyQt6.QtXml",
78+
# "PyQt6.QtNetwork", # needed by QtMultimedia. kinda weird but ok.
7979
]
8080

8181
# We don't put these files in to actually include them in the script but to make the Analysis method scan them for imports

0 commit comments

Comments
 (0)