Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90515781
akantu_version.py.in
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Nov 2, 09:33
Size
496 B
Mime Type
text/x-python
Expires
Mon, Nov 4, 09:33 (2 d)
Engine
blob
Format
Raw Data
Handle
22082193
Attached To
rAKA akantu
akantu_version.py.in
View Options
#!/usr/bin/env python3
def get_version():
AKANTU_VERSION_MAJOR = @AKANTU_MAJOR_VERSION@
AKANTU_VERSION_MINOR = @AKANTU_MINOR_VERSION@
AKANTU_VERSION_PATCH = @AKANTU_PATCH_VERSION@
AKANTU_VERSION_PRERELEASE = '@AKANTU_PRERELASE_VERSION@'
AKANTU_VERSION_LOCAL = '@AKANTU_LOCAL_VERSION@'
return '{}.{}.{}{}{}'.format(
AKANTU_VERSION_MAJOR,
AKANTU_VERSION_MINOR,
AKANTU_VERSION_PATCH,
AKANTU_VERSION_PRERELEASE,
AKANTU_VERSION_LOCAL)
Event Timeline
Log In to Comment