blob: a84edb0c273488b57bdc94d00f5df4ab44f0716c (
plain)
1
2
3
4
5
6
7
8
|
from chimere.version import VERSION
SACLAY_MINOR = 11
SACLAY_VERSION = list(VERSION) + [SACLAY_MINOR]
def get_saclay_version():
return '.'.join((str(num) for num in SACLAY_VERSION))
|