-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This enables wrapping of non serializable wrapper with standard pickle. It uses pathos which relies on dill. Plus, it changes the maximum number of cpus to use to cpu_count() - 1. This leaves one for the scheduler. Also, this correct some pep8.
- Loading branch information
Showing
5 changed files
with
98 additions
and
32 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
.eggs/ | ||
build/ | ||
dist/ | ||
doc/_generated/ | ||
*.egg-info/ | ||
*__pycache__/ | ||
*.log |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ | |
extras_require = { | ||
'joblib': ["joblib>=0.9.3"], | ||
'ipyparallel': ["ipyparallel>=5.0.1"], | ||
'pathos': ["pathos>=0.2.0"] | ||
}, | ||
author="Felipe Aguirre Martinez", | ||
author_email="[email protected]", | ||
|