diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-07-13 03:33:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-13 03:33:53 (GMT) |
commit | 36101c2c5daf692d1716e17720c6c5197f28e25d (patch) | |
tree | 55c541606172df98bdfff21eaab88dbe9a7cd1da /setup.py | |
parent | bfb709b771230e7e466961b5ddf4852962602450 (diff) | |
download | cpython-36101c2c5daf692d1716e17720c6c5197f28e25d.zip cpython-36101c2c5daf692d1716e17720c6c5197f28e25d.tar.gz cpython-36101c2c5daf692d1716e17720c6c5197f28e25d.tar.bz2 |
closes bpo-37347: Fix refcount problem in sqlite3. (GH-14268)
(cherry picked from commit b9a0376b0dedf16a2f82fa43d851119d1f7a2707)
Co-authored-by: gescheit <gescheit@yandex-team.ru>
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1348,7 +1348,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]) |