A Sage_macOS user pointed out that
from sage.graphs import bliss
produces a "Module not found" error.
In SageMath 10.3 the directory sage/venv/lib/python3.11/site-packages/sage/graphs contained both bliss.pyx and
bliss.cpython-311-darwin.so.
But in 10.4 and 10.5 the corresponding directory only contains bliss.pyx. Presumably the python extension module was created in 10.3 by running cython on bliss.pyx and compiling the result. But that stopped happening in SageMath 10.4.
Does anyone know anything about this?
- Marc