Merge branch 'development' of magit1.mpie.de:damask/DAMASK into development

This commit is contained in:
Chen 2016-10-14 10:45:57 -04:00 committed by chen
commit e9ff0a2434
2 changed files with 5 additions and 2 deletions

View File

@ -1 +1 @@
v2.0.1-201-g7278605
v2.0.1-213-g75149cc

View File

@ -8,7 +8,10 @@ with open(os.path.join(os.path.dirname(__file__),'../../VERSION')) as f:
from .environment import Environment # noqa
from .asciitable import ASCIItable # noqa
from .h5table import H5Table # noqa
try:
from .h5table import H5Table # noqa
except ImportError:
print("h5py module not found")
from .config import Material # noqa
from .colormaps import Colormap, Color # noqa
from .orientation import Quaternion, Rodrigues, Symmetry, Orientation # noqa