From ab05e3caabd627c0d9c9dba5013bdda330d90c30 Mon Sep 17 00:00:00 2001 From: Michael Dales Date: Thu, 19 Mar 2026 10:36:48 +0000 Subject: [PATCH 1/2] Update aoh package dependnacy --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index f25a72b..1e37174 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,7 +9,7 @@ scikit-image redlistapi boto3 yirgacheffe>=1.12,<2.0 -aoh[validation]>=2.1.0,<3.0 +aoh[validation]>=2.1.1,<3.0 # Snakemake workflow management snakemake>=8.0 From e9d3a0cef48d67cbb9d8d039d8a01ff4a2939f52 Mon Sep 17 00:00:00 2001 From: Michael Dales Date: Thu, 19 Mar 2026 10:50:20 +0000 Subject: [PATCH 2/2] Update for newer snakefmt --- workflow/rules/aoh.smk | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/workflow/rules/aoh.smk b/workflow/rules/aoh.smk index 3f6cbe1..a636030 100644 --- a/workflow/rules/aoh.smk +++ b/workflow/rules/aoh.smk @@ -31,7 +31,10 @@ rule aoh_version_sentinel: # Get aoh package version try: result = subprocess.run( - ["aoh-calc", "--version"], capture_output=True, text=True, check=True + ["aoh-calc", "--version"], + capture_output=True, + text=True, + check=True, ) aoh_version = result.stdout.strip() except Exception: