Conversation
Builds libscip (SCIP 10.0.2 + SoPlex 8.0.2 + Ipopt 3.14.19 + MUMPS 5.8.2) from source with scipoptsuite-deploy v0.12.0's linux.bash recipe in place of the prebuilt libscip-linux*.zip upstream downloads, which has no riscv64 build.
luhenry
added a commit
that referenced
this pull request
Sep 25, 2026
Contributor
|
All four interpreter builds failed while cythonizing scip.pyx: src/pyscipopt/matrix.pxi:236:4: 'axis' redeclared PySCIPOpt 6.2.1 requires an unpinned "cython >=0.21", so the isolated build pulls Cython 3.3.0, which rejects the annotated re-assignment of the `axis` parameter. Backport upstream's fix (scipopt/PySCIPOpt#1248, ca6631b) as a patch applied before cibuildwheel. The same log also shows setup.py picking /project/scip/lib64: the before-all moves the libraries into lib/ but left an empty lib64/ behind, and setup.py prefers lib64 when it exists, so the link would fail next. Move only lib/, include/ and bin/ into the project, matching what upstream's libscip-linux.zip contains.
This branch has not been deployed
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.
pyscipopt6.2.1Compiles the PySCIPOpt Cython extension against a libscip (SCIP 10.0.2, SoPlex 8.0.2, Ipopt 3.14.19, MUMPS 5.8.2) built from source. Upstream publishes no riscv64 wheel.
Mirrors upstream's
build_wheels.ymland scipoptsuite-deploy'slinux.bash.Differs from upstream
before-allbuilds libscip with scipoptsuite-deploy v0.12.0's recipe - its prebuilt zip has no riscv64 build-march=nativedropped from GKlib - GCC rejects it on riscv64libgfortran-staticandlibstdc++-staticadded - Rocky 10 packages them separatelyTesting
License: Wheel bundles libscip with SCIP, SoPlex, Ipopt (EPL-2.0), MUMPS (CeCILL-C), METIS, LAPACK, nauty, dejavu, CppAD (EPL-1.0), AMPL/MP and tinycthread, plus libgfortran (GPL-3.0 with runtime exception); upstream ships no licence text for them, so the build adds it.
Built on cp312; CI pending.