Skip to content

Commit fe24ee1

Browse files
committed
refactor: read version from file
1 parent 1eac0b1 commit fe24ee1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

workflow/Snakefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import subprocess
66

77
min_version("7.19")
88

9-
__version__ = "1.3.0"
9+
with open(Path(workflow.basedir).parent / "version.txt") as f:
10+
__version__ = f.read()
1011

1112
containerized: "docker://ahmig/vipera:v" + __version__
1213

0 commit comments

Comments
 (0)