cluster_tools 2.3.2__tar.gz → 2.3.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.
Files changed (38) hide show
  1. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/PKG-INFO +1 -1
  2. cluster_tools-2.3.4/cluster_tools/version.py +1 -0
  3. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools.egg-info/PKG-INFO +1 -1
  4. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/pyproject.toml +1 -1
  5. cluster_tools-2.3.2/cluster_tools/version.py +0 -1
  6. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/README.md +0 -0
  7. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/__init__.py +0 -0
  8. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/_utils/call.py +0 -0
  9. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/_utils/file_wait_thread.py +0 -0
  10. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/_utils/multiprocessing_logging_handler.py +0 -0
  11. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/_utils/pickling.py +0 -0
  12. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/_utils/reflection.py +0 -0
  13. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/_utils/string_.py +0 -0
  14. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/_utils/tailf.py +0 -0
  15. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/_utils/warning.py +0 -0
  16. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/executor_protocol.py +0 -0
  17. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/executors/dask.py +0 -0
  18. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/executors/multiprocessing_.py +0 -0
  19. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/executors/multiprocessing_pickle.py +0 -0
  20. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/executors/sequential.py +0 -0
  21. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/executors/sequential_pickle.py +0 -0
  22. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/remote.py +0 -0
  23. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/schedulers/__init__.py +0 -0
  24. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/schedulers/cluster_executor.py +0 -0
  25. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/schedulers/kube.py +0 -0
  26. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/schedulers/pbs.py +0 -0
  27. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools/schedulers/slurm.py +0 -0
  28. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools.egg-info/SOURCES.txt +0 -0
  29. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools.egg-info/dependency_links.txt +0 -0
  30. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools.egg-info/requires.txt +0 -0
  31. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/cluster_tools.egg-info/top_level.txt +0 -0
  32. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/setup.cfg +0 -0
  33. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/tests/test_all.py +0 -0
  34. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/tests/test_dask.py +0 -0
  35. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/tests/test_deref_main.py +0 -0
  36. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/tests/test_kubernetes.py +0 -0
  37. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/tests/test_multiprocessing.py +0 -0
  38. {cluster_tools-2.3.2 → cluster_tools-2.3.4}/tests/test_slurm.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cluster_tools
3
- Version: 2.3.2
3
+ Version: 2.3.4
4
4
  Summary: Utility library for easily distributing code execution on clusters
5
5
  Author-email: scalable minds <hello@scalableminds.com>
6
6
  License: MIT
@@ -0,0 +1 @@
1
+ __version__ = '2.3.4'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cluster_tools
3
- Version: 2.3.2
3
+ Version: 2.3.4
4
4
  Summary: Utility library for easily distributing code execution on clusters
5
5
  Author-email: scalable minds <hello@scalableminds.com>
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "cluster_tools"
3
- version = "2.3.2" # filled by dunamai
3
+ version = "2.3.4" # filled by dunamai
4
4
  description = "Utility library for easily distributing code execution on clusters"
5
5
  authors = [{name= "scalable minds", email="hello@scalableminds.com"}]
6
6
  readme = "README.md"
@@ -1 +0,0 @@
1
- __version__ = '2.3.2'
File without changes
File without changes