Skip to content

Commit

Permalink
Merge pull request #54 from pdimens/dev
Browse files Browse the repository at this point in the history
hotfix for missing print_* deps in validations
  • Loading branch information
pdimens authored Mar 1, 2024
2 parents d622c5e + 8863baf commit 1a8278f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "harpy"
version = "0.7.1"
version = "0.7.3"
authors = [
{name = "Pavel Dimens"}
]
Expand Down
2 changes: 1 addition & 1 deletion src/harpy/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
click.rich_click.ERRORS_EPILOGUE = "See the documentation: [link=https://pdimens.github.io/harpy/]https://pdimens.github.io/harpy/[/link]"

@click.group(options_metavar='', context_settings=dict(help_option_names=["-h", "--help"]))
@click.version_option("0.7.1", prog_name="Harpy")
@click.version_option("0.7.3", prog_name="Harpy")
def cli():
"""
## Harpy haplotagging pipeline
Expand Down
1 change: 1 addition & 0 deletions src/harpy/validations.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import re
import subprocess
from .fileparsers import getnames
from .printfunctions import print_error, print_notice, print_solution, print_solution_with_culprits
from urllib.request import urlretrieve
from pathlib import Path
from rich.table import Table
Expand Down

0 comments on commit 1a8278f

Please sign in to comment.