Skip to content

Commit

Permalink
FFS __version__
Browse files Browse the repository at this point in the history
  • Loading branch information
glarue committed Jun 9, 2022
1 parent 93c0d9f commit 2380f26
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions intronIC/intronIC.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@
# not installed, but there is another version that *is*
raise pkg_resources.DistributionNotFound
else:
__version__ = _dist.version
__version__ = f'v{_dist.version}'
except pkg_resources.DistributionNotFound:
try:
from ._version import get_versions
from _version import get_versions
__version__ = get_versions()['version']
except ModuleNotFoundError:
pass
Expand Down Expand Up @@ -5048,7 +5048,7 @@ def main():
# /Logging setup ##########################################################

write_log(
'Starting intronIC {} run on {}',
'Starting intronIC v{} run on {}',
__version__,
ARGS['SPECIES_NAME_INFO']
)
Expand Down

0 comments on commit 2380f26

Please sign in to comment.