fix: Pin pip build-isolation cmake to 4.4.0 for the OTIO wheel build - #1376
Draft
cedrik-fuoco-adsk wants to merge 1 commit into
Draft
Conversation
The Windows Debug jobs have failed on every nightly since 2026-08-05 with no OpenRV change. Two nightlies of the identical commit 6a3af6e straddle the boundary: Aug 4 passed, Aug 5 failed. OpenTimelineIO is built from source against our custom debug Python, and its setup.py runs find_package(Python ... Interpreter Development.Module) using the cmake wheel pip installs into the isolated build environment -- not the cmake driving the outer OpenRV build, and not the msys2 one. That resolution is unpinned, so it floats with PyPI. cmake 4.4.2 was published to PyPI on 2026-08-04T06:13:31Z, between those two runs. It contains "FindPython: Add support for pydebug ABI flag on Windows" (Kitware/CMake 84cb7e262), which reworks how the debug Python artifacts are located and makes that find_package fail: Could NOT find Python (missing: Interpreter Development.Module) (found version "3.11.9") Constrain the build environment via PIP_CONSTRAINT to cmake==4.4.0, the last version known good on Windows, Linux and macOS. Release builds are unaffected because they never build OTIO against a debug interpreter. Signed-off-by: Cédrik Fuoco <cedrik.fuoco@autodesk.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pin pip build-isolation cmake to 4.4.0 for the OTIO wheel build
Linked issues
none
Summarize your change.
Constrain the build environment via PIP_CONSTRAINT to cmake==4.4.0, the last version known good on Windows.
Release builds are unaffected because they never build OTIO against a debug interpreter.
Describe the reason for the change.
The Windows Debug jobs have failed on every nightly since 2026-08-05 with no OpenRV change. Two nightlies of the identical commit 6a3af6e straddle the boundary: Aug 4 passed, Aug 5 failed.
cmake 4.4.2 was published to PyPI on 2026-08-04T06:13:31Z, between those two runs. It contains "FindPython: Add support for pydebug ABI flag on Windows" (Kitware/CMake 84cb7e262), which reworks how the debug Python artifacts are located
Describe what you have tested and on which operating system.
CI
Add a list of changes, and note any that might need special attention during the review.
If possible, provide screenshots.