sktime / skpro

A unified framework for tabular probabilistic regression, time-to-event prediction, and probability distributions in python
https://skpro.readthedocs.io/en/latest
BSD 3-Clause "New" or "Revised" License
250 stars 46 forks source link

[MNT] address incompatibility of `lifelines` with `scipy 1.14` #408

Closed fkiraly closed 4 months ago

fkiraly commented 5 months ago

scipy 1.14 has been released, and lifelines is incompatible with it due to changes and deprecations in the integrate module.

We could wait for the issue being resolved (it looks small), otherwise we have to add scipy < 1.14 modifier for lifelines dependent models impacted by this.

Someone has beat me to contributing a fix to lifelines: https://github.com/CamDavidsonPilon/lifelines/pull/1620

fkiraly commented 4 months ago

addressed