mirror of
https://github.com/python/cpython.git
synced 2025-07-12 13:55:34 +00:00
closes bpo-37347: Fix refcount problem in sqlite3. (GH-14268)
This commit is contained in:
parent
0827064c95
commit
b9a0376b0d
6 changed files with 66 additions and 98 deletions
2
setup.py
2
setup.py
|
@ -1357,7 +1357,7 @@ class PyBuildExt(build_ext):
|
|||
]
|
||||
if CROSS_COMPILING:
|
||||
sqlite_inc_paths = []
|
||||
MIN_SQLITE_VERSION_NUMBER = (3, 3, 9)
|
||||
MIN_SQLITE_VERSION_NUMBER = (3, 7, 2)
|
||||
MIN_SQLITE_VERSION = ".".join([str(x)
|
||||
for x in MIN_SQLITE_VERSION_NUMBER])
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue