Conversation
Windows dist fails for all three Cython projects with 'ModuleNotFoundError: No module named Cython' when the cython.exe console script runs during CMake configure. Pin below 3.2.8 to check whether that release is the cause. Assisted-by: ClaudeCode:claude-opus-4.8
The cython<3.2.8 pin did not help: cython==3.2.6 still fails with the same ModuleNotFoundError. The only other variable that changed since the last green run is uv (0.11.27 -> 0.11.28). Pin uv 0.11.27 to confirm. Assisted-by: ClaudeCode:claude-opus-4.8
Contributor
Author
|
🤖 AI text below 🤖 Bisection update The Comparing the last green
uv is the only variable common to all three failing projects — the two legacy setuptools projects don't load scikit-build-core at all, yet fail identically. This push pins |
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.
🤖 AI text below 🤖
Draft — investigation only, not for merge.
The
distjob onwindows-latestfails for all three Cython projects (hello-cython,core-cython-hello,pen2-cython) with:raised when the
cython.execonsole script is invoked during CMake configure (via cython-cmake'sFindCython.cmakefor the core project, andfind_packagefor the legacy setuptools projects). The failure is Windows-only and hits both build-backend families, so it is not the CMake policy-max bump (#79) and not scikit-build-core alone.Between the last green
mainrun (Jul 7) and now the Windows image is unchanged (VS 18 2026, MSVC 19.51, Python 3.12.10, CMake 4.3.4). The floated build deps are the suspects. This PR pinscython<3.2.8in the three projects' build requirements as the first single-variable test.distgoes green → Cython 3.2.8's console-script behavior in the isolated build env is the culprit.uv/ another dep.