Skip to content

Commit 8c2a218

Browse files
committed
fix: strip remove whitespace from parsed version
1 parent 6d7c81a commit 8c2a218

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

workflow/Snakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import subprocess
77
min_version("7.19")
88

99
with open(Path(workflow.basedir).parent / "version.txt") as f:
10-
__version__ = f.read()
10+
__version__ = f.read().strip()
1111

1212
containerized: "docker://ahmig/vipera:v" + __version__
1313

0 commit comments

Comments
 (0)