Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b7effb7

Browse files
authoredMar 28, 2025··
Merge branch 'main' into feat/memorize_broken_nodes
2 parents 0d0d093 + dc9a4fd commit b7effb7

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed
 

‎CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

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+
320
## [1.0.1](https://github.com/snakemake/snakemake-executor-plugin-slurm/compare/v1.0.0...v1.0.1) (2025-03-13)
421

522

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "snakemake-executor-plugin-slurm"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
description = "A Snakemake executor plugin for submitting jobs to a SLURM cluster."
55
authors = [
66
"Christian Meesters <meesters@uni-mainz.de>",

‎snakemake_executor_plugin_slurm/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ def test_account(self, account):
727727
)
728728
return ""
729729

730-
if account not in accounts:
730+
if account.lower() not in accounts:
731731
raise WorkflowError(
732732
f"The given account {account} appears to be invalid. Available "
733733
f"accounts:\n{', '.join(accounts)}"

0 commit comments

Comments
 (0)
Please sign in to comment.