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