resubmit 0.0.6__tar.gz → 0.0.7__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.
- {resubmit-0.0.6/src/resubmit.egg-info → resubmit-0.0.7}/PKG-INFO +1 -1
- {resubmit-0.0.6 → resubmit-0.0.7}/pyproject.toml +1 -1
- {resubmit-0.0.6 → resubmit-0.0.7}/src/resubmit/__bookkeeping.py +2 -0
- {resubmit-0.0.6 → resubmit-0.0.7/src/resubmit.egg-info}/PKG-INFO +1 -1
- {resubmit-0.0.6 → resubmit-0.0.7}/LICENSE +0 -0
- {resubmit-0.0.6 → resubmit-0.0.7}/README.md +0 -0
- {resubmit-0.0.6 → resubmit-0.0.7}/setup.cfg +0 -0
- {resubmit-0.0.6 → resubmit-0.0.7}/src/resubmit/__debug.py +0 -0
- {resubmit-0.0.6 → resubmit-0.0.7}/src/resubmit/__init__.py +0 -0
- {resubmit-0.0.6 → resubmit-0.0.7}/src/resubmit/__submit.py +0 -0
- {resubmit-0.0.6 → resubmit-0.0.7}/src/resubmit.egg-info/SOURCES.txt +0 -0
- {resubmit-0.0.6 → resubmit-0.0.7}/src/resubmit.egg-info/dependency_links.txt +0 -0
- {resubmit-0.0.6 → resubmit-0.0.7}/src/resubmit.egg-info/requires.txt +0 -0
- {resubmit-0.0.6 → resubmit-0.0.7}/src/resubmit.egg-info/top_level.txt +0 -0
- {resubmit-0.0.6 → resubmit-0.0.7}/tests/test_bookkeeping.py +0 -0
- {resubmit-0.0.6 → resubmit-0.0.7}/tests/test_resubmit.py +0 -0
|
@@ -153,6 +153,7 @@ def submit_jobs(
|
|
|
153
153
|
block: bool = False,
|
|
154
154
|
prompt: bool = True,
|
|
155
155
|
local_run: bool = False,
|
|
156
|
+
job_name: Optional[str] = "resubmit",
|
|
156
157
|
slurm_additional_parameters: Dict | None = None,
|
|
157
158
|
) -> Any:
|
|
158
159
|
"""
|
|
@@ -193,5 +194,6 @@ def submit_jobs(
|
|
|
193
194
|
block=block,
|
|
194
195
|
prompt=prompt,
|
|
195
196
|
local_run=local_run,
|
|
197
|
+
job_name=job_name,
|
|
196
198
|
slurm_additional_parameters=slurm_additional_parameters,
|
|
197
199
|
)
|
|
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
|