Skip to content

Commit

Permalink
Checkout datajoint/version.py from 0812fe1
Browse files Browse the repository at this point in the history
  • Loading branch information
ethho committed Sep 19, 2024
1 parent fd464c1 commit fa34535
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions datajoint/version.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
try:
# Use datajoint/_version.py written by setuptools_scm if it exists
# This module is not tracked in VCS and defines a __version_tuple__ like
# (0, 14, 3, 'dev224', 'g0812fe17.d20240919')
from ._version import __version_tuple__ as version_tuple
except ImportError:
version_tuple = (0, 14, 3)

__version__ = ".".join(str(x) for x in version_tuple[:3])
__version__ = "0.14.3"

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

0 comments on commit fa34535

Please sign in to comment.