Version checks Add-ons that were manually deconstructing Anki’s version string and making assumptions about the number of components it has should instead switch to Anki’s built-in tools for getting the version number. For example: from anki import buildinfo if int(buildinfo.version.split(".")[2]) < 45: # < 2.1.45 …should become: from anki.utils import pointVersion if pointVersion() < 45: ... For Anki 2.1.x releases, it will return the x. For Anki 23.10+, it packs the version into 6 dig...