Skip to content

Commit

Permalink
update versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
balajtimate committed Nov 13, 2024
1 parent b3d5d05 commit 4623fe2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 0 additions & 2 deletions htsinfer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"""HTSinfer project root"""

from htsinfer.htsinfer import HtsInfer # noqa:F401

__version__ = "1.0.0"
6 changes: 2 additions & 4 deletions htsinfer/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@
import sys
import tempfile

from htsinfer import (
HtsInfer,
__version__,
)
from htsinfer import HtsInfer
from htsinfer.version import __version__
from htsinfer.models import (
CleanupRegimes,
LogLevels,
Expand Down
3 changes: 3 additions & 0 deletions htsinfer/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"""Single source of truth for package version."""

__version__ = "1.0.0-rc.1"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""HTSinfer package definition"""

from setuptools import setup, find_packages
from setuptools import (setup, find_packages)

from htsinfer import __version__
from htsinfer.version import __version__

# Read long description from file
with open("README.md", "r", encoding="utf-8") as fh:
Expand Down

0 comments on commit 4623fe2

Please sign in to comment.