Skip to content

Commit

Permalink
bpo-31525: Increase minimum sqlite version number check (GH-12923)
Browse files Browse the repository at this point in the history
  • Loading branch information
LordAro authored and berkerpeksag committed Apr 26, 2019
1 parent 06d04e7 commit ad0daf5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -1299,7 +1299,7 @@ def detect_sqlite(self):
sqlite_setup_debug = False # verbose debug prints from this script?

# We hunt for #define SQLITE_VERSION "n.n.n"
# We need to find >= sqlite version 3.0.8
# We need to find >= sqlite version 3.3.9, for sqlite3_prepare_v2
sqlite_incdir = sqlite_libdir = None
sqlite_inc_paths = [ '/usr/include',
'/usr/include/sqlite',
Expand All @@ -1310,7 +1310,7 @@ def detect_sqlite(self):
]
if CROSS_COMPILING:
sqlite_inc_paths = []
MIN_SQLITE_VERSION_NUMBER = (3, 0, 8)
MIN_SQLITE_VERSION_NUMBER = (3, 3, 9)
MIN_SQLITE_VERSION = ".".join([str(x)
for x in MIN_SQLITE_VERSION_NUMBER])

Expand Down Expand Up @@ -1344,7 +1344,7 @@ def detect_sqlite(self):
break
else:
if sqlite_setup_debug:
print("%s: version %d is too old, need >= %s"%(d,
print("%s: version %s is too old, need >= %s"%(d,
sqlite_version, MIN_SQLITE_VERSION))
elif sqlite_setup_debug:
print("sqlite: %s had no SQLITE_VERSION"%(f,))
Expand Down

0 comments on commit ad0daf5

Please sign in to comment.