chore(deps): update dependency joblib to v1.6.0 - #36
Open
renovate[bot] wants to merge 1 commit into
Open
renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
|
This file contains hidden or 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
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.



This PR contains the following updates:
1.4.2→1.6.0Release Notes
joblib/joblib (joblib)
v1.6.0Compare Source
Fix caching of functions whose source cannot be retrieved, such as functions
defined in a notebook cell. Their identity fell back to
str(hash(func.__code__)), which is salted byPYTHONHASHSEEDand sodiffered between processes. A worker reading the
func_code.pywritten byanother one concluded that the function had changed and wiped the whole
cache directory for it, discarding results computed by its peers.
func_code.pyis also no longer rewritten in place, so a reader can nolonger catch it half-written and draw the same conclusion.
#1694
Drop python 3.9 support. The oldest supported Python version
is now Python 3.10.
#1773
Fix
eval_expr(used to evaluate thepre_dispatchargument ofParallel) to raise aValueErroras documented instead of leaking aZeroDivisionErrorfor expressions that divide or take a modulo by zero.#1810
MemorizedResultnow forwardsmmap_modeto its store backend, so acached array reconstructed from a location is memory-mapped as requested
instead of being loaded fully into memory.
#1799
Unvendor cloudpickle to more quickly benefit from maintenance releases
of cloudpickle
#1775
Fix
Memory.cachefor functions with a keyword-only argument that has adefault declared before a keyword-only argument without a default.
#1731
Fix behavior of
filter_argson some precise cases.#1800
Fix a concurrency error that could happen with unordered generator.
#1789
Fix:
dump()now accepts any inputos.PathLikeobject to be consistent withload.#1812
The documentation now uses pydata sphinx theme. Furthermore, optional dependencies
testanddocshave been added topyproject.toml.#1774
Vendor
loky 3.6.0#1843
v1.5.3Compare Source
The
Memoryobject won't overwrite an already existing.gitignorefile in itscache directory anymore.
#1742
Harden the safety checks in
eval_expr(pre_dispatch)to prevent excessivememory allocation and potential crashes by limiting the allowed length of the
expression and the maximum numeric value of sub-expressions and not
evaluating expressions with non-numeric literals.
#1744
Vendor cloudpickle 3.1.2 to fix a pickling problem with interactively
defined abstract base classes and type annotations in Python 3.14+.
v1.5.2Compare Source
loky3.5.6fixing the resource tracker for python 3.13.7+#1740
Memory:
v1.5.1Compare Source
Fix backend hints causing errors when no multiprocessing is present
#1721
Vendor
loky3.5.5fixing the resource_tracker clean up with earlier Pythonversions. #1724
v1.5.0Compare Source
Memory:
Fixed a bug that caused the
timeoutparameter injoblib.Parallelto beineffective when used along with
return_as='generator_unordered'.#1586
Pretty printing of
Parallelexecution progress when the number of tasks isknown. #1608
Make it possible to pass extra arguments to the
LokyBackendandMultiprocessingBackend, enabling the use ofinitializer.#1525
Refactor and document the custom parallel backend API.
#1667
Maintenance:
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.