diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-04-27 17:36:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-27 17:36:58 (GMT) |
commit | e013d8df2c9b6ea5bc9ae92a10950157e6cb46d6 (patch) | |
tree | f1dad9395998b5607897d5f6ff735bcc086ff251 | |
parent | 1d7a53759ff41162aded89e8fd4e1867d8ba506b (diff) | |
download | cpython-e013d8df2c9b6ea5bc9ae92a10950157e6cb46d6.zip cpython-e013d8df2c9b6ea5bc9ae92a10950157e6cb46d6.tar.gz cpython-e013d8df2c9b6ea5bc9ae92a10950157e6cb46d6.tar.bz2 |
bpo-43492: Update macOS installer to use SQLite 3.35.5 (GH-25640)
(cherry picked from commit ce827816442613f982c356aa2f434c3c8a0c8917)
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 6 | ||||
-rw-r--r-- | Misc/NEWS.d/next/macOS/2021-03-15-11-32-23.bpo-43492.1ZRcV9.rst | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index a2d9a5e..8e1fdd8 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -307,9 +307,9 @@ def library_recipes(): ), ), dict( - name="SQLite 3.34.0", - url="https://sqlite.org/2020/sqlite-autoconf-3340000.tar.gz", - checksum='7f33c9db7b713957fcb9271fe9049fef', + name="SQLite 3.35.5", + url="https://sqlite.org/2021/sqlite-autoconf-3350500.tar.gz", + checksum='d1d1aba394c8e0443077dc9f1a681bb8', extra_cflags=('-Os ' '-DSQLITE_ENABLE_FTS5 ' '-DSQLITE_ENABLE_FTS4 ' diff --git a/Misc/NEWS.d/next/macOS/2021-03-15-11-32-23.bpo-43492.1ZRcV9.rst b/Misc/NEWS.d/next/macOS/2021-03-15-11-32-23.bpo-43492.1ZRcV9.rst new file mode 100644 index 0000000..39f1537 --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2021-03-15-11-32-23.bpo-43492.1ZRcV9.rst @@ -0,0 +1 @@ +Update macOS installer to use SQLite 3.35.4. |