Skip to content

Commit

Permalink
Merge pull request #266 from Becksteinlab/update-versioneer
Browse files Browse the repository at this point in the history
updated to versioneer 0.29
  • Loading branch information
orbeckst authored Nov 8, 2023
2 parents 51e1a03 + 1a0b3cc commit fa64735
Show file tree
Hide file tree
Showing 3 changed files with 1,031 additions and 423 deletions.
5 changes: 2 additions & 3 deletions gromacs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
# __all__ is extended with all gromacs command instances later
__all__ = ["config", "tools", "cbook", "fileformats"]

from ._version import get_versions
from . import _version

#: Version of the package, following `semantic versioning`_ in the form
#: MAJOR.MINOR.PATCH. When PATCH increases, bugs are fixed or documentation
Expand All @@ -193,8 +193,7 @@
#: the commit ID encoded in the trailing string.
#:
#: .. _`semantic versioning`: https://semver.org/
__version__ = get_versions()["version"]
del get_versions
__version__ = _version.get_versions()["version"]

from . import fileformats
from .exceptions import (
Expand Down
Loading

0 comments on commit fa64735

Please sign in to comment.