Merge branch 'setup_min_version' of https://github.com/salty-horse/calibre

This commit is contained in:
Kovid Goyal 2023-11-17 08:22:24 +05:30
commit 2fba82c683
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -9,7 +9,7 @@ __docformat__ = 'restructuredtext en'
import sys, os
def check_version_info(minver=(3, 7, 0)):
def check_version_info(minver=(3, 8, 0)):
vi = sys.version_info
if vi < minver:
def fmt(v):