executorlib 0.0.3__tar.gz → 0.0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {executorlib-0.0.3/executorlib.egg-info → executorlib-0.0.4}/PKG-INFO +5 -5
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/_version.py +3 -3
- {executorlib-0.0.3 → executorlib-0.0.4/executorlib.egg-info}/PKG-INFO +5 -5
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib.egg-info/requires.txt +4 -4
- {executorlib-0.0.3 → executorlib-0.0.4}/pyproject.toml +4 -4
- {executorlib-0.0.3 → executorlib-0.0.4}/LICENSE +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/MANIFEST.in +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/README.md +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/__init__.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/backend/__init__.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/backend/cache_parallel.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/backend/cache_serial.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/backend/interactive_parallel.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/backend/interactive_serial.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/cache/__init__.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/cache/executor.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/cache/hdf.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/cache/shared.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/interactive/__init__.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/interactive/backend.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/interactive/dependencies.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/interactive/executor.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/interactive/flux.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/shared/__init__.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/shared/communication.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/shared/executor.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/shared/inputcheck.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/shared/plot.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/shared/spawner.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/shared/thread.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/shell/__init__.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/shell/executor.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib/shell/interactive.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib.egg-info/SOURCES.txt +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib.egg-info/dependency_links.txt +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/executorlib.egg-info/top_level.txt +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/setup.cfg +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/setup.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_backend_serial.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_cache_executor_mpi.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_cache_executor_serial.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_cache_hdf.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_cache_shared.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_dependencies_executor.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_executor_backend_flux.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_executor_backend_mpi.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_executor_backend_mpi_noblock.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_flux_executor.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_integration_pyiron_workflow.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_local_executor.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_local_executor_future.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_shared_backend.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_shared_communication.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_shared_executorbase.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_shared_input_check.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_shared_thread.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_shell_executor.py +0 -0
- {executorlib-0.0.3 → executorlib-0.0.4}/tests/test_shell_interactive.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: executorlib
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.4
|
|
4
4
|
Summary: Scale serial and MPI-parallel python functions over hundreds of compute nodes all from within a jupyter notebook or serial python process.
|
|
5
5
|
Author-email: Jan Janssen <janssen@lanl.gov>
|
|
6
6
|
License: BSD 3-Clause License
|
|
@@ -49,17 +49,17 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
49
49
|
Requires-Python: <3.13,>=3.9
|
|
50
50
|
Description-Content-Type: text/markdown
|
|
51
51
|
License-File: LICENSE
|
|
52
|
-
Requires-Dist: cloudpickle<=3.
|
|
52
|
+
Requires-Dist: cloudpickle<=3.1.0,>=2.0.0
|
|
53
53
|
Requires-Dist: pyzmq<=26.2.0,>=25.0.0
|
|
54
54
|
Provides-Extra: mpi
|
|
55
|
-
Requires-Dist: mpi4py<=4.0.
|
|
55
|
+
Requires-Dist: mpi4py<=4.0.1,>=3.1.4; extra == "mpi"
|
|
56
56
|
Provides-Extra: hdf
|
|
57
57
|
Requires-Dist: h5py<=3.11.0,>=3.6.0; extra == "hdf"
|
|
58
58
|
Provides-Extra: graph
|
|
59
59
|
Requires-Dist: pygraphviz<=1.14,>=1.10; extra == "graph"
|
|
60
60
|
Requires-Dist: matplotlib<=3.9.2,>=3.5.3; extra == "graph"
|
|
61
|
-
Requires-Dist: networkx<=3.
|
|
62
|
-
Requires-Dist: ipython<=8.
|
|
61
|
+
Requires-Dist: networkx<=3.4,>=2.8.8; extra == "graph"
|
|
62
|
+
Requires-Dist: ipython<=8.28.0,>=7.33.0; extra == "graph"
|
|
63
63
|
|
|
64
64
|
# executorlib
|
|
65
65
|
[](https://github.com/pyiron/executorlib/actions/workflows/unittest-openmpi.yml)
|
|
@@ -8,11 +8,11 @@ import json
|
|
|
8
8
|
|
|
9
9
|
version_json = '''
|
|
10
10
|
{
|
|
11
|
-
"date": "2024-10-
|
|
11
|
+
"date": "2024-10-14T11:43:21+0200",
|
|
12
12
|
"dirty": true,
|
|
13
13
|
"error": null,
|
|
14
|
-
"full-revisionid": "
|
|
15
|
-
"version": "0.0.
|
|
14
|
+
"full-revisionid": "7f3065ee67503167f6d86a654e6238c5ae361674",
|
|
15
|
+
"version": "0.0.4"
|
|
16
16
|
}
|
|
17
17
|
''' # END VERSION_JSON
|
|
18
18
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: executorlib
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.4
|
|
4
4
|
Summary: Scale serial and MPI-parallel python functions over hundreds of compute nodes all from within a jupyter notebook or serial python process.
|
|
5
5
|
Author-email: Jan Janssen <janssen@lanl.gov>
|
|
6
6
|
License: BSD 3-Clause License
|
|
@@ -49,17 +49,17 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
49
49
|
Requires-Python: <3.13,>=3.9
|
|
50
50
|
Description-Content-Type: text/markdown
|
|
51
51
|
License-File: LICENSE
|
|
52
|
-
Requires-Dist: cloudpickle<=3.
|
|
52
|
+
Requires-Dist: cloudpickle<=3.1.0,>=2.0.0
|
|
53
53
|
Requires-Dist: pyzmq<=26.2.0,>=25.0.0
|
|
54
54
|
Provides-Extra: mpi
|
|
55
|
-
Requires-Dist: mpi4py<=4.0.
|
|
55
|
+
Requires-Dist: mpi4py<=4.0.1,>=3.1.4; extra == "mpi"
|
|
56
56
|
Provides-Extra: hdf
|
|
57
57
|
Requires-Dist: h5py<=3.11.0,>=3.6.0; extra == "hdf"
|
|
58
58
|
Provides-Extra: graph
|
|
59
59
|
Requires-Dist: pygraphviz<=1.14,>=1.10; extra == "graph"
|
|
60
60
|
Requires-Dist: matplotlib<=3.9.2,>=3.5.3; extra == "graph"
|
|
61
|
-
Requires-Dist: networkx<=3.
|
|
62
|
-
Requires-Dist: ipython<=8.
|
|
61
|
+
Requires-Dist: networkx<=3.4,>=2.8.8; extra == "graph"
|
|
62
|
+
Requires-Dist: ipython<=8.28.0,>=7.33.0; extra == "graph"
|
|
63
63
|
|
|
64
64
|
# executorlib
|
|
65
65
|
[](https://github.com/pyiron/executorlib/actions/workflows/unittest-openmpi.yml)
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
cloudpickle<=3.
|
|
1
|
+
cloudpickle<=3.1.0,>=2.0.0
|
|
2
2
|
pyzmq<=26.2.0,>=25.0.0
|
|
3
3
|
|
|
4
4
|
[graph]
|
|
5
5
|
pygraphviz<=1.14,>=1.10
|
|
6
6
|
matplotlib<=3.9.2,>=3.5.3
|
|
7
|
-
networkx<=3.
|
|
8
|
-
ipython<=8.
|
|
7
|
+
networkx<=3.4,>=2.8.8
|
|
8
|
+
ipython<=8.28.0,>=7.33.0
|
|
9
9
|
|
|
10
10
|
[hdf]
|
|
11
11
|
h5py<=3.11.0,>=3.6.0
|
|
12
12
|
|
|
13
13
|
[mpi]
|
|
14
|
-
mpi4py<=4.0.
|
|
14
|
+
mpi4py<=4.0.1,>=3.1.4
|
|
@@ -24,7 +24,7 @@ classifiers = [
|
|
|
24
24
|
"Programming Language :: Python :: 3.12",
|
|
25
25
|
]
|
|
26
26
|
dependencies = [
|
|
27
|
-
"cloudpickle>=2.0.0,<=3.
|
|
27
|
+
"cloudpickle>=2.0.0,<=3.1.0",
|
|
28
28
|
"pyzmq>=25.0.0,<=26.2.0",
|
|
29
29
|
]
|
|
30
30
|
dynamic = ["version"]
|
|
@@ -35,15 +35,15 @@ Documentation = "https://executorlib.readthedocs.io"
|
|
|
35
35
|
Repository = "https://github.com/pyiron/executorlib"
|
|
36
36
|
|
|
37
37
|
[project.optional-dependencies]
|
|
38
|
-
mpi = ["mpi4py>=3.1.4,<=4.0.
|
|
38
|
+
mpi = ["mpi4py>=3.1.4,<=4.0.1"]
|
|
39
39
|
hdf = [
|
|
40
40
|
"h5py>=3.6.0,<=3.11.0",
|
|
41
41
|
]
|
|
42
42
|
graph = [
|
|
43
43
|
"pygraphviz>=1.10,<=1.14",
|
|
44
44
|
"matplotlib>=3.5.3,<=3.9.2",
|
|
45
|
-
"networkx>=2.8.8,<=3.
|
|
46
|
-
"ipython>=7.33.0,<=8.
|
|
45
|
+
"networkx>=2.8.8,<=3.4",
|
|
46
|
+
"ipython>=7.33.0,<=8.28.0",
|
|
47
47
|
]
|
|
48
48
|
|
|
49
49
|
[tool.setuptools.packages.find]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|