Skip to content

Commit

Permalink
Fix versioneer to get accurate version numbers (#132)
Browse files Browse the repository at this point in the history
* Fix versioneer to get accurate version numbers

The update to versioneer in #114 resulted in us not getting versions from git.
This is because we weren't specifying the tag_prefix appropriately, and
this broke newer versions of versioneer.

Fix and add a basic unittest that would catch issues like this in the future

* flake8

Co-authored-by: Karl Higley <[email protected]>
  • Loading branch information
benfred and karlhigley authored Sep 7, 2022
1 parent d5f4084 commit b78f7f0
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
2 changes: 1 addition & 1 deletion merlin/core/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def get_config():
cfg = VersioneerConfig()
cfg.VCS = "git"
cfg.style = "pep440"
cfg.tag_prefix = ""
cfg.tag_prefix = "v"
cfg.parentdir_prefix = "merlin-core-"
cfg.versionfile_source = "merlin/core/_version.py"
cfg.verbose = False
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ VCS = git
style = pep440
versionfile_source = merlin/core/_version.py
versionfile_build = merlin/core/_version.py
tag_prefix =
tag_prefix = v
parentdir_prefix = merlin-core-
22 changes: 22 additions & 0 deletions tests/unit/core/test_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#
# Copyright (c) 2022, NVIDIA CORPORATION.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
from packaging.version import Version

import merlin.core


def test_version():
assert Version(merlin.core.__version__) >= Version("0.6.0")

0 comments on commit b78f7f0

Please sign in to comment.