Release notes
Sometimes the API of sisl
changes and users needs to adapt their
scripts to the API changes.
Generally this can be accommodated by using a code if
block:
if sisl.__version_tuple__[:3] >= (0, 13, 0):
pass
else:
pass
this will allow one to reliably test different versions.
We will generally advice users to follow the latest releases as bug-fixes may superseede API changes and bring more performance overall.
In any case the following list of release notes may be used to check changes between versions.