Skip to content

Commit a9c735d

Browse files
Fix OpenTimelineIO crash at startup (#512)
### Fix OpenTimelineIO crash at startup ### Linked issues Fixes #511 ### Summarize your change. Force the previous version of OpenTimelineIO to be used in Open RV (==0.16.0) to fix the crash at launch. ### Describe the reason for the change. Open RV crashes on launch on Windows since the OpenTimelineIO python package was updated to 0.17.0 This started to occur on July 2nd, 2024. Matching the release of OpenTimelineIO version 0.17.0 Work around: ./py-interp -m pip install OpenTimelineIO==0.16 The latest version of OpenTimelineIO is normally used in Open RV, but the recently released version is causing a crash at startup. As an emergency fix, we will therefore force the previous version of OpenTimelineIO to be used in Open RV (==0.16.0) to fix the crash at launch until this OpenTimelineIO issue is resolved at the source. ### Describe what you have tested and on which operating system. Successfully tested on Windows 11 and macOS. ### Add a list of changes, and note any that might need special attention during the review. ### If possible, provide screenshots. Signed-off-by: Bernard Laberge <bernard.laberge@autodesk.com>
1 parent ccec94c commit a9c735d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/build/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
pip # License: MIT License (MIT)
44
setuptools # License: MIT License
5-
OpenTimelineIO # License: Other/Proprietary License (Modified Apache 2.0 License)
5+
OpenTimelineIO==0.16 # License: Other/Proprietary License (Modified Apache 2.0 License)
66
PyOpenGL # License: BSD License (BSD)
77
PyOpenGL_accelerate # License: BSD License (BSD)
88

0 commit comments

Comments
 (0)