Disable bytecode optimization during wheel installation (#949)

diff --git a/python/pip_install/extract_wheels/wheel.py b/python/pip_install/extract_wheels/wheel.py
index 024d6e5..f3d5f21 100644
--- a/python/pip_install/extract_wheels/wheel.py
+++ b/python/pip_install/extract_wheels/wheel.py
@@ -84,6 +84,7 @@
             interpreter="/dev/null",
             script_kind="posix",
             destdir=directory,
+            bytecode_optimization_levels=[],
         )
 
         with installer.sources.WheelFile.open(self.path) as wheel_source: