diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-01-06 00:02:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-06 00:02:43 (GMT) |
commit | cf0b23908cc902ac38cd83dd7ca5afdf89e1543b (patch) | |
tree | 213330fcd0db5954b3937e913a168fc7f68ebf4b /setup.py | |
parent | c7f8d3caf0b10c19cd46b1b334a98628eac15672 (diff) | |
download | cpython-cf0b23908cc902ac38cd83dd7ca5afdf89e1543b.zip cpython-cf0b23908cc902ac38cd83dd7ca5afdf89e1543b.tar.gz cpython-cf0b23908cc902ac38cd83dd7ca5afdf89e1543b.tar.bz2 |
bpo-40810: Require SQLite 3.7.15 (GH-24106)
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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]) |