Skip to content

Commit ec85c20

Browse files
authored
Devops/relax scipy cap (#2853)
* relax scipy upper cap * update changelog
1 parent 41d1345 commit ec85c20

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ but cannot always guarantee backwards compatibility. Changes that may **break co
2424

2525
**Dependencies**
2626

27+
- Removed the upper version cap on `scipy<1.16.0` since `statsmodels` added support in version `0.14.5`. [#2853](https://github.com/unit8co/darts/pull/2853) by [Dennis Bader](https://github.com/dennisbader).
28+
2729
### For developers of the library:
2830

2931
- Renamed `RegressionModelWithCategoricalCovariates` to `RegressionModelWithCategoricalFeatures` which now also supports categorical target features. [#2765](https://github.com/unit8co/darts/pull/2765) by [Jonas Blanc](https://github.com/jonasblanc)

darts/tests/models/forecasting/test_classifier_model.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
from sklearn.utils import Tags
2020

2121
from darts.logging import get_logger
22-
from darts.models.forecasting.catboost_model import CatBoostClassifierModel
23-
from darts.models.forecasting.lgbm import LightGBMClassifierModel
24-
from darts.models.forecasting.sklearn_model import (
22+
from darts.models import (
23+
CatBoostClassifierModel,
24+
LightGBMClassifierModel,
2525
SKLearnClassifierModel,
26-
SKLearnModelWithCategoricalFeatures,
26+
XGBClassifierModel,
2727
)
28-
from darts.models.forecasting.xgboost import XGBClassifierModel
28+
from darts.models.forecasting.sklearn_model import SKLearnModelWithCategoricalFeatures
2929
from darts.timeseries import TimeSeries
3030
from darts.utils import timeseries_generation as tg
3131
from darts.utils.likelihood_models.base import LikelihoodType

requirements/core.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pandas>=1.0.5
88
pyod>=0.9.5
99
requests>=2.22.0
1010
scikit-learn>=1.6.0
11-
scipy>=1.3.2,<1.16.0
11+
scipy>=1.3.2
1212
shap>=0.40.0
1313
statsforecast>=1.4
1414
statsmodels>=0.14.0

0 commit comments

Comments
 (0)