Skip to content

Commit

Permalink
upgrade versioneer
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseefeld committed May 14, 2024
1 parent 0f369a8 commit efdcc22
Show file tree
Hide file tree
Showing 4 changed files with 1,045 additions and 428 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ ignore =

[versioneer]
VCS = git
style = git-describe
style = pep440
versionfile_source = src/faber/_version.py
versionfile_build = faber/_version.py
tag_prefix = release/
5 changes: 2 additions & 3 deletions src/faber/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
# Boost Software License, Version 1.0.
# (Consult LICENSE or http://www.boost.org/LICENSE_1_0.txt)

from ._version import get_versions
__version__ = get_versions()['version']
del get_versions
from . import _version
__version__ = _version.get_versions()['version']

debug = False
Loading

0 comments on commit efdcc22

Please sign in to comment.