diff --git a/hpc_helper/__init__.py b/hpc_helper/__init__.py index 06fadd3..e69b2c3 100644 --- a/hpc_helper/__init__.py +++ b/hpc_helper/__init__.py @@ -11,7 +11,7 @@ write_hpc_status_file, ) -__version__ = "0.3.1" +__version__ = "0.3.2" __all__ = [ "build_job_submit_torque", diff --git a/hpc_helper/_hpc_helper.py b/hpc_helper/_hpc_helper.py index e470cca..1f0101c 100644 --- a/hpc_helper/_hpc_helper.py +++ b/hpc_helper/_hpc_helper.py @@ -268,7 +268,10 @@ def build_job_submit_slurm( :func:`subprocess.call`. """ - sbatch_command = f"sbatch.{target_system} --job-name {job_name} " + if target_system != "woody": + sbatch_command = f"sbatch.{target_system} --job-name {job_name} " + else: + sbatch_command = f"sbatch --job-name {job_name} " if gres is None: gres = "gpu:1" if target_system != "tinygpu": diff --git a/pyproject.toml b/pyproject.toml index a394f27..049c7b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "hpc_helper" -version = "0.3.1" +version = "0.3.2" description = "Python package with helper functions for working with FAU's High Performance Cluster (HPC)." authors = ["Robert Richer "] readme = "README.md"