mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
update python ver dep
This commit is contained in:
parent
7b1747d650
commit
2c9f286026
1 changed files with 2 additions and 2 deletions
|
@ -4,8 +4,8 @@
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
if sys.version_info[0] < 3 or sys.version_info[1] < 5:
|
if sys.version_info[0] < 3 or sys.version_info[1] < 6:
|
||||||
raise Exception("Anki requires Python 3.5+")
|
raise Exception("Anki requires Python 3.6+")
|
||||||
|
|
||||||
version="2.1.0beta12" # build scripts grep this line, so preserve formatting
|
version="2.1.0beta12" # build scripts grep this line, so preserve formatting
|
||||||
from anki.storage import Collection
|
from anki.storage import Collection
|
||||||
|
|
Loading…
Reference in a new issue