Skip to content

Commit

Permalink
Automated Latest Dependency Updates (#4375)
Browse files Browse the repository at this point in the history
* Update latest dependencies

* added new expected error due to sktime update

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: MichaelFu512 <[email protected]>
  • Loading branch information
3 people authored Dec 27, 2023
1 parent 0073d5f commit 4c782a7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,11 @@ def test_polynomial_decomposer_needs_monotonic_index(ts_data):
with pytest.raises(Exception) as exec_info:
y_shuffled = y.sample(frac=1, replace=False)
decomposer.fit_transform(X, y_shuffled)
expected_errors = ["monotonically", "X must be in an sktime compatible format"]
expected_errors = [
"monotonically",
"X must be in an sktime compatible format",
"'NoneType' object is not subscriptable",
]
assert any([error in str(exec_info.value) for error in expected_errors])


Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
black==23.12.0
black==23.12.1
catboost==1.2.2
category-encoders==2.5.1.post0
click==8.1.7
Expand All @@ -12,7 +12,7 @@ holidays==0.20
imbalanced-learn==0.11.0
ipywidgets==8.1.1
kaleido==0.1.0
lightgbm==4.1.0
lightgbm==4.2.0
lime==0.2.0.1
matplotlib==3.7.4
matplotlib-inline==0.1.6
Expand All @@ -29,7 +29,7 @@ scikit-optimize==0.9.0
scipy==1.10.1
seaborn==0.13.0
shap==0.44.0
sktime==0.24.1
sktime==0.25.0
statsmodels==0.14.1
texttable==1.7.0
tomli==2.0.1
Expand Down

0 comments on commit 4c782a7

Please sign in to comment.