1
0

win/mac build: don't exclude QtNetwork, as it is needed by QtMultimedia (used for camera)

fixes https://github.com/spesmilo/electrum/issues/9949

follow-up b6e4ec8f95
This commit is contained in:
SomberNight
2025-06-13 13:53:50 +00:00
parent f366f3e7fb
commit 02249e3992
2 changed files with 2 additions and 2 deletions

View File

@@ -56,7 +56,6 @@ datas += copy_metadata('slip10') # from trezor->slip10
excludes = [
"PyQt6.QtBluetooth",
"PyQt6.QtDesigner",
"PyQt6.QtNetwork",
"PyQt6.QtNfc",
"PyQt6.QtPositioning",
"PyQt6.QtQml",
@@ -73,6 +72,7 @@ excludes = [
"PyQt6.QtWebChannel",
"PyQt6.QtWebSockets",
"PyQt6.QtXml",
# "PyQt6.QtNetwork", # needed by QtMultimedia. kinda weird but ok.
]
# We don't put these files in to actually include them in the script but to make the Analysis method scan them for imports

View File

@@ -59,7 +59,6 @@ datas += copy_metadata('slip10') # from trezor->slip10
excludes = [
"PyQt6.QtBluetooth",
"PyQt6.QtDesigner",
"PyQt6.QtNetwork",
"PyQt6.QtNfc",
"PyQt6.QtPositioning",
"PyQt6.QtQml",
@@ -76,6 +75,7 @@ excludes = [
"PyQt6.QtWebChannel",
"PyQt6.QtWebSockets",
"PyQt6.QtXml",
# "PyQt6.QtNetwork", # needed by QtMultimedia. kinda weird but ok.
]
# We don't put these files in to actually include them in the script but to make the Analysis method scan them for imports