-
Notifications
You must be signed in to change notification settings - Fork 23
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
Fix(requirements): bump dependencies, mainly to eliminate third-party security issues #1383
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
… security issues * Bump `TensorFlow 2.12.1->2.16.1` * Bump `catboost 1.2.2->1.2.5` * Bump `mlflow 2.9.2->2.12.2` * Bump `azureml-core 1.49.0->1.56.0` * Remove locked `gunicorn` and `packaging`
…party security issues * Bump `docker 6.1.3->7.1.0` * Bump `responses 0.23->0.25.3` * Bump `black 22.12.0->24.4.2` * Bump `notebook 6.5.6->7.2.1`
* Add `scikeras~=0.13.0` dependency * Use `scikeras.wrappers.KerasRegressor` instead of removed `tensorflow.keras.wrappers.scikit_learn import KerasRegressor`
…kwargs` in `KerasBaseEstimator`
…zers.get(optimizer)` in autoencoders
…zers.get(optimizer)` in autoencoders
…zers.get(optimizer)` in autoencoders
…tor.__getstate__`
…tor.__getstate__`
This is due to the fact that `TransformedTargetRegressor` receives a `regressor` as input, then clones it for every `fit` and sets it to `regressor_`, leaving the original `regressor` uninitialized forever.
…delRegressor` docstring
…` in `_extract_metadata_from_model`
…mator` and children Also adjust tests
koropets
reviewed
Jul 8, 2024
@@ -1,6 +1,5 @@ | |||
dictdiffer~=0.8 | |||
dataclasses-json~=0.3 | |||
gunicorn~=22.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would keep this dependency. I know this is a transitional dependency through mlflow, but mlflow is extras_require. A user can install gordo without it
koropets
approved these changes
Jul 9, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Main dependencies
TensorFlow 2.12.1->2.16.1
catboost 1.2.2->1.2.5
mlflow 2.9.2->2.12.2
azureml-core 1.49.0->1.56.0
gunicorn
andpackaging
scikeras~=0.13.0
dependencyTest dependencies
docker 6.1.3->7.1.0
responses 0.23->0.25.3
black 22.12.0->24.4.2
notebook 6.5.6->7.2.1
Changes to accomodate
scikeras.wrappers.KerasRegressor
instead of removedtensorflow.keras.wrappers.scikit_learn import KerasRegressor