Skip to content

Commit

Permalink
Merge branch 'main' into feat/multicluster
Browse files Browse the repository at this point in the history
  • Loading branch information
cmeesters authored May 3, 2024
2 parents 19c8501 + 912df83 commit 1ff5cab
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.4.5](https://github.com/snakemake/snakemake-executor-plugin-slurm/compare/v0.4.4...v0.4.5) (2024-04-17)


### Bug Fixes

* fix path typo ([#72](https://github.com/snakemake/snakemake-executor-plugin-slurm/issues/72)) ([f64fb5a](https://github.com/snakemake/snakemake-executor-plugin-slurm/commit/f64fb5adce9dc285c0b212af22d98b4289e8ce25))

## [0.4.4](https://github.com/snakemake/snakemake-executor-plugin-slurm/compare/v0.4.3...v0.4.4) (2024-04-15)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "snakemake-executor-plugin-slurm"
version = "0.4.4"
version = "0.4.5"
description = "A Snakemake executor plugin for submitting jobs to a SLURM cluster."
authors = [
"Christian Meesters <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion snakemake_executor_plugin_slurm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def run_job(self, job: JobExecutorInterface):
group_or_rule = f"group_{job.name}" if job.is_group() else f"rule_{job.name}"

try:
wildcard_str = f"_{'_'.join(job.wildcards)}" if job.wildcards else ""
wildcard_str = "_".join(job.wildcards) if job.wildcards else ""
except AttributeError:
wildcard_str = ""

Expand Down

0 comments on commit 1ff5cab

Please sign in to comment.