Skip to content

Commit 9050d67

Browse files
committed
Freeze: Include OpenGL/OpenGL_accelerate on Win32
1 parent 8a868b5 commit 9050d67

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

freeze.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
"requests",
9292
"zmq",
9393
"webbrowser",
94-
"json"
94+
"json",
9595
]
9696

9797
# Modules to include
@@ -203,7 +203,11 @@ def find_files(directory, patterns):
203203
src_files.append((os.path.join(PATH, "installer", "launch-win.bat"), "launch-win.bat"))
204204

205205
# Add additional package
206-
python_packages.append('idna')
206+
python_packages.extend([
207+
"idna",
208+
"OpenGL",
209+
"OpenGL_accelerate",
210+
])
207211

208212
# Manually add zmq dependency (windows does not freeze it correctly)
209213
import zmq

0 commit comments

Comments
 (0)