mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 18:13:04 +02:00
...
This commit is contained in:
parent
bacd84c21d
commit
aed8f4b31c
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
|
@ -15,9 +15,9 @@
|
|||
|
||||
def check_version_info():
|
||||
vi = sys.version_info
|
||||
if vi[0] == 2 and vi[1] > 5:
|
||||
if vi[0] == 2 and vi[1] > 6:
|
||||
return None
|
||||
return 'calibre requires python >= 2.6'
|
||||
return 'calibre requires python >= 2.7 and < 3'
|
||||
|
||||
def option_parser():
|
||||
parser = optparse.OptionParser()
|
||||
|
|
|
|||
Loading…
Reference in a new issue