diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-05-19 00:16:43 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-19 07:16:43 +0000 |
commit | d1bfefd8de5c1fd51baec9e86e5f3bcc9ce28943 (patch) | |
tree | 8a221f8b5cd1988d13be9a61489184e08ef9a162 | |
parent | [3.11] gh-104623: Update Windows installer to use SQLite 3.42.0 (#104625) (#1... (diff) | |
download | cpython-d1bfefd8de5c1fd51baec9e86e5f3bcc9ce28943.tar.gz cpython-d1bfefd8de5c1fd51baec9e86e5f3bcc9ce28943.tar.bz2 cpython-d1bfefd8de5c1fd51baec9e86e5f3bcc9ce28943.zip |
[3.11] gh-104623: Update macOS installer to SQLite 3.42.0 (GH-104643)
(cherry picked from commit fd04bfeaf7a4531120ad450dbd1afc121a2523ee)
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 6 | ||||
-rw-r--r-- | Misc/NEWS.d/next/macOS/2023-05-18-22-31-49.gh-issue-104623.6h7Xfx.rst | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 8748b205ed7..a4d62e509b3 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -358,9 +358,9 @@ def library_recipes(): ), ), dict( - name="SQLite 3.41.2", - url="https://sqlite.org/2023/sqlite-autoconf-3410200.tar.gz", - checksum="862075fd1c38324878ef809eda39edfe", + name="SQLite 3.42.0", + url="https://sqlite.org/2023/sqlite-autoconf-3420000.tar.gz", + checksum="0c5a92bc51cf07cae45b4a1e94653dea", extra_cflags=('-Os ' '-DSQLITE_ENABLE_FTS5 ' '-DSQLITE_ENABLE_FTS4 ' diff --git a/Misc/NEWS.d/next/macOS/2023-05-18-22-31-49.gh-issue-104623.6h7Xfx.rst b/Misc/NEWS.d/next/macOS/2023-05-18-22-31-49.gh-issue-104623.6h7Xfx.rst new file mode 100644 index 00000000000..ffb124631c2 --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2023-05-18-22-31-49.gh-issue-104623.6h7Xfx.rst @@ -0,0 +1 @@ +Update macOS installer to SQLite 3.42.0. |