Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automated Latest Dependency Updates #4375

Merged
merged 2 commits into from
Dec 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,11 @@
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 = [

Check warning on line 99 in evalml/tests/component_tests/decomposer_tests/test_polynomial_decomposer.py

View check run for this annotation

Codecov / codecov/patch

evalml/tests/component_tests/decomposer_tests/test_polynomial_decomposer.py#L99

Added line #L99 was not covered by tests
"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
Loading