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

Fixed #971 turned off joblib when n_jobs == 1 #985

Merged
merged 2 commits into from Nov 12, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 17 additions & 0 deletions docs/sources/CHANGELOG.md
Expand Up @@ -7,6 +7,23 @@ The CHANGELOG for the current development version is available at

---



Version 0.22.0dev (TBD)

##### Downloads

- [Source code (zip)](https://github.com/rasbt/mlxtend/archive/v0.22.0.zip)

- [Source code (tar.gz)](https://github.com/rasbt/mlxtend/archive/v0.22.0.tar.gz)

##### Changes

- When `ExhaustiveFeatureSelector` is run with `n_jobs == 1`, joblib is now disabled, which enables more immediate (live) feedback when the `verbose` mode is enabled. [#985](https://github.com/rasbt/mlxtend/pull/985) via [Nima Sarajpoor]




### Version 0.21.0 (09/17/2022)


Expand Down
2 changes: 1 addition & 1 deletion mlxtend/__init__.py
Expand Up @@ -4,4 +4,4 @@
#
# License: BSD 3 clause

__version__ = "0.21.0"
__version__ = "0.22.0dev0"