normalize version number

This commit is contained in:
Damien Elmes 2016-06-28 12:49:54 +10:00
parent 4b478cd3e9
commit 14ae3d5936

View File

@ -9,6 +9,6 @@ if sys.version_info[0] < 3:
elif sys.version_info[1] < 4:
raise Exception("Anki requires Python 3.4+")
version="2.1.0-alpha1" # build scripts grep this line, so preserve formatting
version="2.1.0a1" # build scripts grep this line, so preserve formatting
from anki.storage import Collection
__all__ = ["Collection"]