diff options
author | Erlend E. Aasland <erlend@python.org> | 2024-02-06 10:25:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-06 10:25:54 (GMT) |
commit | 2e99ba9e90ba636dac9ad955ca1d9d67fc72b841 (patch) | |
tree | 1435e46ff84538f65c9b712ff9f4602a1d3013fd | |
parent | ead9e784fb031429522bac6a43ddc0581458afd0 (diff) | |
download | cpython-2e99ba9e90ba636dac9ad955ca1d9d67fc72b841.zip cpython-2e99ba9e90ba636dac9ad955ca1d9d67fc72b841.tar.gz cpython-2e99ba9e90ba636dac9ad955ca1d9d67fc72b841.tar.bz2 |
[3.11] gh-115009: Update macOS installer to use SQLite 3.45.1 (#115066) (#115072)
(cherry picked from commit 13eb5215c9de9dd302f116ef0bca4ae23b02842b)
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/2024-02-06-09-01-10.gh-issue-115009.ysau7e.rst | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index f72e30a..a6b29e9 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -358,9 +358,9 @@ def library_recipes(): ), ), dict( - name="SQLite 3.43.1", - url="https://sqlite.org/2023/sqlite-autoconf-3430100.tar.gz", - checksum="77e61befe9c3298da0504f87772a24b0", + name="SQLite 3.45.1", + url="https://sqlite.org/2024/sqlite-autoconf-3450100.tar.gz", + checksum="cd9c27841b7a5932c9897651e20b86c701dd740556989b01ca596fcfa3d49a0a", extra_cflags=('-Os ' '-DSQLITE_ENABLE_FTS5 ' '-DSQLITE_ENABLE_FTS4 ' diff --git a/Misc/NEWS.d/next/macOS/2024-02-06-09-01-10.gh-issue-115009.ysau7e.rst b/Misc/NEWS.d/next/macOS/2024-02-06-09-01-10.gh-issue-115009.ysau7e.rst new file mode 100644 index 0000000..47ec488 --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2024-02-06-09-01-10.gh-issue-115009.ysau7e.rst @@ -0,0 +1 @@ +Update macOS installer to use SQLite 3.45.1. |