File tree 3 files changed +19
-2
lines changed
snakemake_executor_plugin_slurm
3 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ 1.1.0] ( https://github.com/snakemake/snakemake-executor-plugin-slurm/compare/v1.0.1...v1.1.0 ) (2025-03-14)
4
+
5
+
6
+ ### Features
7
+
8
+ * tolerant status checks ([ #232 ] ( https://github.com/snakemake/snakemake-executor-plugin-slurm/issues/232 ) ) ([ cb20135] ( https://github.com/snakemake/snakemake-executor-plugin-slurm/commit/cb20135d5c894cf8b013509576997002c6e6d256 ) )
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * trying syntax fix ([ #235 ] ( https://github.com/snakemake/snakemake-executor-plugin-slurm/issues/235 ) ) ([ 5e591ae] ( https://github.com/snakemake/snakemake-executor-plugin-slurm/commit/5e591aee3a9489f33c67f79c67473244263c8673 ) )
14
+
15
+
16
+ ### Documentation
17
+
18
+ * rewrite of the documentation ([ #219 ] ( https://github.com/snakemake/snakemake-executor-plugin-slurm/issues/219 ) ) ([ 7d0b44c] ( https://github.com/snakemake/snakemake-executor-plugin-slurm/commit/7d0b44c43841111567e42e38b4c10b84f3efe88d ) )
19
+
3
20
## [ 1.0.1] ( https://github.com/snakemake/snakemake-executor-plugin-slurm/compare/v1.0.0...v1.0.1 ) (2025-03-13)
4
21
5
22
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " snakemake-executor-plugin-slurm"
3
- version = " 1.0.1 "
3
+ version = " 1.1.0 "
4
4
description = " A Snakemake executor plugin for submitting jobs to a SLURM cluster."
5
5
authors = [
6
6
" Christian Meesters <meesters@uni-mainz.de>" ,
Original file line number Diff line number Diff line change @@ -727,7 +727,7 @@ def test_account(self, account):
727
727
)
728
728
return ""
729
729
730
- if account not in accounts :
730
+ if account . lower () not in accounts :
731
731
raise WorkflowError (
732
732
f"The given account { account } appears to be invalid. Available "
733
733
f"accounts:\n { ', ' .join (accounts )} "
You can’t perform that action at this time.
0 commit comments