Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
lizgehret committed Dec 19, 2024
1 parent 77e6ae8 commit 519c13c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions q2_sapienns/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@

# flake8: noqa

from . import _version
__version__ = _version.get_versions()['version']
try:
from ._version import __version__
except ModuleNotFoundError:
__version__ = '0.0.0+notfound'

from .plugin_setup import (
HumannGeneFamilyDirectoryFormat, HumannGeneFamilyFormat,
Expand Down

0 comments on commit 519c13c

Please sign in to comment.