1 # Management of EFICAS version numbering.
2 # A version has at least major and minor numbers, for easier comparison.
9 def getEficasVersion():
11 Return the EFICAS current version number.
13 return "%s.%s"%(getMajor(),getMinor())
16 def getSalomeVersion():
18 Return the SALOME version number to which current EFICAS version is related.
20 return getEficasVersion()
24 return __version['major']
28 return __version['minor']
33 Returns [ major, minor ] array of integers.
35 return [ getMajor(), getMinor() ]