mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
bpo-40810: Require SQLite 3.7.15 (GH-24106)
This commit is contained in:
parent
c7f8d3caf0
commit
cf0b23908c
9 changed files with 11 additions and 56 deletions
3
setup.py
3
setup.py
|
@ -1444,8 +1444,7 @@ class PyBuildExt(build_ext):
|
|||
]
|
||||
if CROSS_COMPILING:
|
||||
sqlite_inc_paths = []
|
||||
# We need to find >= sqlite version 3.7.3, for sqlite3_create_function_v2()
|
||||
MIN_SQLITE_VERSION_NUMBER = (3, 7, 3)
|
||||
MIN_SQLITE_VERSION_NUMBER = (3, 7, 15) # Issue 40810
|
||||
MIN_SQLITE_VERSION = ".".join([str(x)
|
||||
for x in MIN_SQLITE_VERSION_NUMBER])
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue