We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83b6b18 commit f840637Copy full SHA for f840637
docs/whats_new.rst
@@ -9,6 +9,16 @@ What's New
9
import enjoy_slurm
10
11
12
+v0.1.1 (25.08.2023)
13
+-------------------
14
+
15
+Bugfix release.
16
17
+Bugfixes
18
+~~~~~~~~
19
20
+- Allow empty list as dependency in :py:meth:`sbatch` (:pull:`26`).
21
22
v0.1.0 (23.05.2023)
23
-------------------
24
enjoy_slurm/parser.py
@@ -141,7 +141,7 @@ def kwargs_to_slurm(d):
141
if k in skip_args:
142
continue
143
flag = "--" + k.replace("_", "-")
144
- if k == "dependency" and v is not None:
+ if k == "dependency" and v:
145
r[flag] = _parse_dependency(v)
146
147
if k == "kill_on_invalid_dep" and not isinstance(v, str):
0 commit comments