-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scipy, qutip, pandas problem #1677
Comments
Linking |
@DerThorsten have you seen this?
I have a feeling I've already seen this message before, I don't remember what we did about it or if we even fixed it. |
scipy.spatial._qhull was problematic before...as anything scipy related. |
With pyodide it works, I think they have a newer version? |
Old fortran code seems to be one main problem. I just googled a bit, did you try https://github.com/r-wasm/flang-wasm?tab=readme-ov-file for building scipy? |
Ok, I am now trying to look a bit deeper into the problem.
I have put break points at filesystem stat and open, and that the file interpnd.pyx is not found seems to be the problem. And it is definitely not part of the generated tar.gz. |
I am wondering how loading pyx work with jupyter lite xeus? Is cython running inside emscripten, or should a mechanism exist, that replaces |
I have a bit weird dependency problem.
I have the following environment setup:
If I build it without qutip, everything works fine.
If I build it with qutip, loading
fails, as it can not load
pandas
.If I only do
it fails with
so it seems that
pandas
invokesqutip
(Why?), which invokes in turnscipy.interpolate
. In this causes the other packages to fail.Running
confirms it.
Of course,
scipy.interpolate
is deprecated.The questions is, why it is failing?
Are the deprecated functions missing in current
scipy
emscripten build and is this causing the problem? Or is a change upstream inqutip
required?The text was updated successfully, but these errors were encountered: