Skip to content

Commit

Permalink
1.5.3 bump, fix --version
Browse files Browse the repository at this point in the history
  • Loading branch information
BioWilko committed Nov 14, 2024
1 parent 544fa2f commit 25cb338
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions artic/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import sys
import os

from . import version
from importlib.metadata import version


def run_subtool(parser, args):
Expand Down Expand Up @@ -56,7 +56,7 @@ def init_pipeline_parser():
"--version",
help="Installed Artic version",
action="version",
version="%(prog)s " + str(version.__version__),
version=f"artic {version('artic')}",
)
subparsers = parser.add_subparsers(
title="[sub-commands]", dest="command", parser_class=ArgumentParserWithDefaults
Expand Down
1 change: 0 additions & 1 deletion artic/version.py

This file was deleted.

2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = artic
version = 1.5.2
version = 1.5.3
author = Nick Loman
author_email = [email protected]
maintainer = Sam Wilkinson
Expand Down

0 comments on commit 25cb338

Please sign in to comment.