Skip to content

Commit 7968f67

Browse files
committed
Experimental freeze changes to include all sentry_sdk modules (they seem to be missing on Windows builds)
1 parent 5031f2d commit 7968f67

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

freeze.py

+11-1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@
8080
"time",
8181
"uuid",
8282
"idna",
83+
"sentry_sdk",
8384
"shutil",
8485
"threading",
8586
"subprocess",
@@ -95,7 +96,16 @@
9596
]
9697

9798
# Modules to include
98-
python_modules = ["idna.idnadata"]
99+
python_modules = ["idna.idnadata",
100+
"sentry_sdk.integrations.stdlib",
101+
"sentry_sdk.integrations.excepthook",
102+
"sentry_sdk.integrations.dedupe",
103+
"sentry_sdk.integrations.atexit",
104+
"sentry_sdk.integrations.modules",
105+
"sentry_sdk.integrations.argv",
106+
"sentry_sdk.integrations.logging",
107+
"sentry_sdk.integrations.threading",
108+
]
99109

100110
# Determine absolute PATH of OpenShot folder
101111
PATH = os.path.dirname(os.path.realpath(__file__)) # Primary openshot folder

0 commit comments

Comments
 (0)