You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 2, 2025. It is now read-only.
The spglib package has been updated and the dict interface still do not have reliable type annotation.
Take an example, running the code can give warnings like
Dict-like interface ( self._dataset['international'] ) are deprecated.
In this case, ammending the code at line 230 in ~/jarvis/analysis/structure/spacegroup.py:
return self._dataset['international']
to
return self._dataset.international
can solve the issue.
Places using spglib may encounter similar problems. Revision on this may help improve the JARVIS code.