Hi,
The demo notebook
used to work well up to Sage 10.7 (included).
In Sage 10.8 and 10.9.beta5, it fails in cell 65 with the error message:
This cell combines cython and numpy.
My system is Ubuntu 24.04 and numpy is from Sage spkg since there is no system numpy installed on that computer.
Following this thread
a workaround was to run
sudo ln -s /home/eric/sage/10.9/local/var/lib/sage/venv-python3.12.5/lib/python3.12/site-packages/numpy/_core/include/numpy/ /usr/include/numpy
Then the notebook ran successfully.
So it seems that in the cython cell 65, the header files for numpy were searched in /usr/include/numpy (which did not exist), instead of in local/var/lib/sage/venv-python3.12.5/lib/python3.12/site-packages/numpy/_core/include/numpy/ under the Sage root directory.
I've just checked that on the same computer, there is no such an issue with Sage 10.7.
Eric.