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.
The
spglibpackage has been updated and the dict interface still do not have reliable type annotation.Take an example, running the code can give warnings like
In this case, ammending the code at line 230 in
~/jarvis/analysis/structure/spacegroup.py:to
can solve the issue.
Places using
spglibmay encounter similar problems. Revision on this may help improve theJARVIScode.