Merge branch 'hotfix/1.7.post11'

This commit is contained in:
Sylvain Tricot 2022-10-05 13:44:04 +02:00
commit b6f2531999
2 changed files with 10 additions and 1 deletions

View File

@ -32,6 +32,11 @@ devel: venv pybinding wx
@$(INSIDE_VENV) pip install -e src/
light: VENV_PATH = ./_venv
light: venv
@$(INSIDE_VENV) pip install src/
_build_wx/wxPython.target:
@$(INSIDE_VENV) echo "Building wxPython for your `python --version 2>&1` under Linux $(DISTRO_RELEASE)..."
# Create a folder to build wx into

View File

@ -38,7 +38,11 @@ import ase.atom
from ase import Atom
from ase import Atoms
from msspec.iodata import Data
try:
from msspec.iodata import Data
except ImportError as err:
print(err)
from msspec.misc import LOGGER