In halos/mass.py all of the partial functions do not have a __name__ attribute and therefore cannot be run in pipelines. This is raised as an error when building one of the examples in the documentation: https://readthedocs.org/projects/skypy/builds/19303339/
The name attribute should be set manually for each of these partial functions. See e.g. here:
|
halofit_smith.__name__ = "halofit_smith" |
In halos/mass.py all of the
partialfunctions do not have a__name__attribute and therefore cannot be run in pipelines. This is raised as an error when building one of the examples in the documentation: https://readthedocs.org/projects/skypy/builds/19303339/The name attribute should be set manually for each of these partial functions. See e.g. here:
skypy/skypy/power_spectrum/_halofit.py
Line 208 in 969cb15