Skip to content

Cloudpickle 1.1.1#878

Merged
ogrisel merged 3 commits into
joblib:masterfrom
ogrisel:cloudpickle-1.1.1
May 29, 2019
Merged

Cloudpickle 1.1.1#878
ogrisel merged 3 commits into
joblib:masterfrom
ogrisel:cloudpickle-1.1.1

Conversation

@ogrisel

@ogrisel ogrisel commented May 29, 2019

Copy link
Copy Markdown
Contributor

Among other improvements, this brings in supports for Python 3.8.

@codecov

codecov Bot commented May 29, 2019

Copy link
Copy Markdown

Codecov Report

Merging #878 into master will increase coverage by 0.8%.
The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff            @@
##           master     #878     +/-   ##
=========================================
+ Coverage   94.54%   95.34%   +0.8%     
=========================================
  Files          45       45             
  Lines        6430     6425      -5     
=========================================
+ Hits         6079     6126     +47     
+ Misses        351      299     -52
Impacted Files Coverage Δ
joblib/numpy_pickle_compat.py 91% <0%> (-0.43%) ⬇️
joblib/numpy_pickle.py 98.52% <0%> (ø) ⬆️
joblib/test/test_memory.py 98.15% <0%> (+0.15%) ⬆️
joblib/test/test_memmapping.py 99.44% <0%> (+0.27%) ⬆️
joblib/test/test_parallel.py 96.69% <0%> (+0.41%) ⬆️
joblib/func_inspect.py 95.45% <0%> (+1.13%) ⬆️
joblib/_parallel_backends.py 94.8% <0%> (+1.2%) ⬆️
joblib/test/test_dask.py 98.5% <0%> (+1.5%) ⬆️
joblib/disk.py 81.66% <0%> (+1.66%) ⬆️
joblib/test/common.py 88.13% <0%> (+1.69%) ⬆️
... and 4 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 0f1f647...52200b9. Read the comment docs.

@codecov

codecov Bot commented May 29, 2019

Copy link
Copy Markdown

Codecov Report

Merging #878 into master will increase coverage by 0.8%.
The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff            @@
##           master     #878     +/-   ##
=========================================
+ Coverage   94.54%   95.34%   +0.8%     
=========================================
  Files          45       45             
  Lines        6430     6425      -5     
=========================================
+ Hits         6079     6126     +47     
+ Misses        351      299     -52
Impacted Files Coverage Δ
joblib/numpy_pickle_compat.py 91% <0%> (-0.43%) ⬇️
joblib/numpy_pickle.py 98.52% <0%> (ø) ⬆️
joblib/test/test_memory.py 98.15% <0%> (+0.15%) ⬆️
joblib/test/test_memmapping.py 99.44% <0%> (+0.27%) ⬆️
joblib/test/test_parallel.py 96.69% <0%> (+0.41%) ⬆️
joblib/func_inspect.py 95.45% <0%> (+1.13%) ⬆️
joblib/_parallel_backends.py 94.8% <0%> (+1.2%) ⬆️
joblib/test/test_dask.py 98.5% <0%> (+1.5%) ⬆️
joblib/disk.py 81.66% <0%> (+1.66%) ⬆️
joblib/test/common.py 88.13% <0%> (+1.69%) ⬆️
... and 4 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 0f1f647...3ba54a5. Read the comment docs.

@ogrisel

ogrisel commented May 29, 2019

Copy link
Copy Markdown
Contributor Author

Will merge when CI is green to fix #874.

@ogrisel

ogrisel commented May 29, 2019

Copy link
Copy Markdown
Contributor Author

The failure looks bad but unrelated to this PR.

@ogrisel ogrisel merged commit 023e7a9 into joblib:master May 29, 2019
@ogrisel ogrisel deleted the cloudpickle-1.1.1 branch May 29, 2019 15:23
netbsd-srcmastr pushed a commit to NetBSD/pkgsrc that referenced this pull request Oct 31, 2019
Release 0.14.0
Improved the load balancing between workers to avoid stranglers caused by an excessively large batch size when the task duration is varying significantly (because of the combined use of joblib.Parallel and joblib.Memory with a partially warmed cache for instance). joblib/joblib#899
Add official support for Python 3.8: fixed protocol number in Hasher and updated tests.
Fix a deadlock when using the dask backend (when scattering large numpy arrays). joblib/joblib#914
Warn users that they should never use joblib.load with files from untrusted sources. Fix security related API change introduced in numpy 1.6.3 that would prevent using joblib with recent numpy versions. joblib/joblib#879
Upgrade to cloudpickle 1.1.1 that add supports for the upcoming Python 3.8 release among other things. joblib/joblib#878
Fix semaphore availability checker to avoid spawning resource trackers on module import. joblib/joblib#893
Fix the oversubscription protection to only protect against nested Parallel calls. This allows joblib to be run in background threads. joblib/joblib#934
Fix ValueError (negative dimensions) when pickling large numpy arrays on Windows. joblib/joblib#920
Upgrade to loky 2.6.0 that add supports for the setting environment variables in child before loading any module. joblib/joblib#940
Fix the oversubscription protection for native libraries using threadpools (OpenBLAS, MKL, Blis and OpenMP runtimes). The maximal number of threads is can now be set in children using the inner_max_num_threads in parallel_backend. It defaults to cpu_count() // n_jobs.
msk pushed a commit to msk/pkgsrc that referenced this pull request May 11, 2026
Release 0.14.0
Improved the load balancing between workers to avoid stranglers caused by an excessively large batch size when the task duration is varying significantly (because of the combined use of joblib.Parallel and joblib.Memory with a partially warmed cache for instance). joblib/joblib#899
Add official support for Python 3.8: fixed protocol number in Hasher and updated tests.
Fix a deadlock when using the dask backend (when scattering large numpy arrays). joblib/joblib#914
Warn users that they should never use joblib.load with files from untrusted sources. Fix security related API change introduced in numpy 1.6.3 that would prevent using joblib with recent numpy versions. joblib/joblib#879
Upgrade to cloudpickle 1.1.1 that add supports for the upcoming Python 3.8 release among other things. joblib/joblib#878
Fix semaphore availability checker to avoid spawning resource trackers on module import. joblib/joblib#893
Fix the oversubscription protection to only protect against nested Parallel calls. This allows joblib to be run in background threads. joblib/joblib#934
Fix ValueError (negative dimensions) when pickling large numpy arrays on Windows. joblib/joblib#920
Upgrade to loky 2.6.0 that add supports for the setting environment variables in child before loading any module. joblib/joblib#940
Fix the oversubscription protection for native libraries using threadpools (OpenBLAS, MKL, Blis and OpenMP runtimes). The maximal number of threads is can now be set in children using the inner_max_num_threads in parallel_backend. It defaults to cpu_count() // n_jobs.
netbsd-srcmastr pushed a commit to NetBSD/pkgsrc that referenced this pull request May 13, 2026
Release 0.14.0
Improved the load balancing between workers to avoid stranglers caused by an excessively large batch size when the task duration is varying significantly (because of the combined use of joblib.Parallel and joblib.Memory with a partially warmed cache for instance). joblib/joblib#899
Add official support for Python 3.8: fixed protocol number in Hasher and updated tests.
Fix a deadlock when using the dask backend (when scattering large numpy arrays). joblib/joblib#914
Warn users that they should never use joblib.load with files from untrusted sources. Fix security related API change introduced in numpy 1.6.3 that would prevent using joblib with recent numpy versions. joblib/joblib#879
Upgrade to cloudpickle 1.1.1 that add supports for the upcoming Python 3.8 release among other things. joblib/joblib#878
Fix semaphore availability checker to avoid spawning resource trackers on module import. joblib/joblib#893
Fix the oversubscription protection to only protect against nested Parallel calls. This allows joblib to be run in background threads. joblib/joblib#934
Fix ValueError (negative dimensions) when pickling large numpy arrays on Windows. joblib/joblib#920
Upgrade to loky 2.6.0 that add supports for the setting environment variables in child before loading any module. joblib/joblib#940
Fix the oversubscription protection for native libraries using threadpools (OpenBLAS, MKL, Blis and OpenMP runtimes). The maximal number of threads is can now be set in children using the inner_max_num_threads in parallel_backend. It defaults to cpu_count() // n_jobs.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant