Skip to content

Commit fa34535

Browse files
committed
Checkout datajoint/version.py from 0812fe1
1 parent fd464c1 commit fa34535

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

datajoint/version.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
try:
2-
# Use datajoint/_version.py written by setuptools_scm if it exists
3-
# This module is not tracked in VCS and defines a __version_tuple__ like
4-
# (0, 14, 3, 'dev224', 'g0812fe17.d20240919')
5-
from ._version import __version_tuple__ as version_tuple
6-
except ImportError:
7-
version_tuple = (0, 14, 3)
8-
9-
__version__ = ".".join(str(x) for x in version_tuple[:3])
1+
__version__ = "0.14.3"
102

113
assert len(__version__) <= 10 # The log table limits version to the 10 characters

0 commit comments

Comments
 (0)