[version] handling version in a file

This commit is contained in:
Max Zwiessele 2015-09-09 09:28:42 +01:00
parent 60aca4a635
commit ac70d3da21
4 changed files with 8 additions and 7 deletions

View file

@ -21,7 +21,8 @@ from . import plotting
from .core import Model
from .core.parameterization import Param, Parameterized, ObsAr
__version__ = '0.8.0'
with open('VERSION', 'r') as f:
__version__ = f.read()
#@nottest
try: