ukhsa-collaboration / pygom

ODE modelling in Python
GNU General Public License v2.0
27 stars 20 forks source link

PyGOM and a function no longer within Scipy #39

Closed MGrunnill closed 3 months ago

MGrunnill commented 4 years ago

Just in case you update scipy note that a function seems to be lost in later version. This causes the error below when importing PyGOM. I found that reverting scipy to version 1.3.2 fixed this issue. scipy.special.cython_special does not export expected C function __pyx_fuse_0pdtr

twomagpi commented 4 years ago

I think this relates to the fact that the C code from Cython is preshipped. Rebuilding the C code against the new version of the library may well work round this issue.

There mighht be a better of supplying the C code. Have to work round not everybody having Cython installed.

twomagpi commented 3 months ago

New build process for #114 should fix this.