diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-06-08 02:43:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-08 02:43:11 (GMT) |
commit | 1e72fb2b78277c89b66e92396c84da912a8fa81f (patch) | |
tree | ac96251bd8d1c520a1e3dd2a255d677fbcdf1c6d | |
parent | 9cf1be46e3692d565461afd3afa326d124d743dd (diff) | |
download | cpython-1e72fb2b78277c89b66e92396c84da912a8fa81f.zip cpython-1e72fb2b78277c89b66e92396c84da912a8fa81f.tar.gz cpython-1e72fb2b78277c89b66e92396c84da912a8fa81f.tar.bz2 |
bpo-40741: Update macOS installer to use SQLite 3.32.2. (GH-20705)
(cherry picked from commit 37eed5a9ee7c802e7151ee9939ed604032886639)
Co-authored-by: Ned Deily <nad@python.org>
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 6 | ||||
-rw-r--r-- | Misc/NEWS.d/next/macOS/2020-06-07-20-10-56.bpo-40741.80A2BW.rst | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 76553c9..86a09ae 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -313,9 +313,9 @@ def library_recipes(): ), ), dict( - name="SQLite 3.31.1", - url="https://sqlite.org/2020/sqlite-autoconf-3310100.tar.gz", - checksum='2d0a553534c521504e3ac3ad3b90f125', + name="SQLite 3.32.2", + url="https://sqlite.org/2020/sqlite-autoconf-3320200.tar.gz", + checksum='eb498918a33159cdf8104997aad29e83', extra_cflags=('-Os ' '-DSQLITE_ENABLE_FTS5 ' '-DSQLITE_ENABLE_FTS4 ' diff --git a/Misc/NEWS.d/next/macOS/2020-06-07-20-10-56.bpo-40741.80A2BW.rst b/Misc/NEWS.d/next/macOS/2020-06-07-20-10-56.bpo-40741.80A2BW.rst new file mode 100644 index 0000000..6ff7b9a --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2020-06-07-20-10-56.bpo-40741.80A2BW.rst @@ -0,0 +1 @@ +Update macOS installer to use SQLite 3.32.2. |