Skip to content

Commit

Permalink
remove version tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
scarlehoff committed Nov 27, 2023
1 parent 0a39d06 commit 0d74395
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ option(ENABLE_OPENMPI "Enable openMPI parallelism." OFF)
option(ENABLE_TESTS "Enable unit test" OFF)
option(ENABLE_ASAN "Enable ASAN" OFF)
option(ENABLE_DEAD_STRIP "Enable use of flag `-dead_strip-dylibs`" OFF)
option(NNPDF_DEV "n3fit and validphys in developer mode" ON)
set(PROFILE_PREFIX "" CACHE STRING "Where you store the 'data' folder. Default empty uses CMAKE_INSTALL_PREFIX/share/NNPDF.")

if (PROFILE_PREFIX)
Expand Down
2 changes: 1 addition & 1 deletion n3fit/src/evolven3fit_new/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from validphys._version import __version__, __version_tuple__
from validphys._version import __version__
2 changes: 1 addition & 1 deletion n3fit/src/n3fit/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from validphys._version import __version__, __version_tuple__
from validphys._version import __version__
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ pattern = "default-unprefixed" # we don't use v in the tags
persistent-substitution = true
initial-content = """
__version__ = "0.0.0"
__version_tuple__ = (0, 0, 0)
"""

[tool.poetry-dynamic-versioning.substitution]
Expand Down
2 changes: 1 addition & 1 deletion validphys2/src/validphys/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from ._version import __version__, __version_tuple__
from ._version import __version__

0 comments on commit 0d74395

Please sign in to comment.