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