diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-01-05 23:46:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-05 14:46:31 -0800 |
commit | f27451dc35f1c69be0c26e8aeafee7ba6771039a (patch) | |
tree | cc7bd7e888c4fb422ff9941bfd8dacd89575bd49 | |
parent | [3.8] [3.9] bpo-42681: Fix test_curses failures related to color pairs (GH-24... (diff) | |
download | cpython-f27451dc35f1c69be0c26e8aeafee7ba6771039a.tar.gz cpython-f27451dc35f1c69be0c26e8aeafee7ba6771039a.tar.bz2 cpython-f27451dc35f1c69be0c26e8aeafee7ba6771039a.zip |
[3.8] bpo-42584: Update macOS installer to use SQLite 3.34.0 (GH-23674). (GH-24129)
(cherry picked from commit c94ee13ad596d26d1859078bc09806aa59bb0000)
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
Automerge-Triggered-By: GH:ned-deily
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 6 | ||||
-rw-r--r-- | Misc/NEWS.d/next/macOS/2020-12-07-11-37-35.bpo-42584.LygmqQ.rst | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 7ef3753ad57..d25c86bf7b4 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -307,9 +307,9 @@ def library_recipes(): ), ), dict( - name="SQLite 3.33.0", - url="https://sqlite.org/2020/sqlite-autoconf-3330000.tar.gz", - checksum='842a8a100d7b01b09e543deb2b7951dd', + name="SQLite 3.34.0", + url="https://sqlite.org/2020/sqlite-autoconf-3340000.tar.gz", + checksum='7f33c9db7b713957fcb9271fe9049fef', extra_cflags=('-Os ' '-DSQLITE_ENABLE_FTS5 ' '-DSQLITE_ENABLE_FTS4 ' diff --git a/Misc/NEWS.d/next/macOS/2020-12-07-11-37-35.bpo-42584.LygmqQ.rst b/Misc/NEWS.d/next/macOS/2020-12-07-11-37-35.bpo-42584.LygmqQ.rst new file mode 100644 index 00000000000..2a625f98e90 --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2020-12-07-11-37-35.bpo-42584.LygmqQ.rst @@ -0,0 +1 @@ +Update macOS installer to use SQLite 3.34.0. |