diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2020-10-05 08:09:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-05 08:09:16 (GMT) |
commit | 9a7642667a71a27b38b96eb63df45f17f48b3467 (patch) | |
tree | 72f30dce77b81a53b675bf2be9e3c9d953dda15f | |
parent | 8e1dd55e63d18d40e78d941fc9233d2c77bcd3de (diff) | |
download | cpython-9a7642667a71a27b38b96eb63df45f17f48b3467.zip cpython-9a7642667a71a27b38b96eb63df45f17f48b3467.tar.gz cpython-9a7642667a71a27b38b96eb63df45f17f48b3467.tar.bz2 |
bpo-41557: Update macOS installer to use SQLite 3.33.0 (GH-21959)
https://sqlite.org/releaselog/3_33_0.html
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 6 | ||||
-rw-r--r-- | Misc/NEWS.d/next/macOS/2020-08-26-09-31-37.bpo-41557.mcQ75z.rst | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index a58b922..2548b21 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -307,9 +307,9 @@ def library_recipes(): ), ), dict( - name="SQLite 3.32.3", - url="https://sqlite.org/2020/sqlite-autoconf-3320300.tar.gz", - checksum='2e3911a3c15e85c2f2d040154bbe5ce3', + name="SQLite 3.33.0", + url="https://sqlite.org/2020/sqlite-autoconf-3330000.tar.gz", + checksum='842a8a100d7b01b09e543deb2b7951dd', extra_cflags=('-Os ' '-DSQLITE_ENABLE_FTS5 ' '-DSQLITE_ENABLE_FTS4 ' diff --git a/Misc/NEWS.d/next/macOS/2020-08-26-09-31-37.bpo-41557.mcQ75z.rst b/Misc/NEWS.d/next/macOS/2020-08-26-09-31-37.bpo-41557.mcQ75z.rst new file mode 100644 index 0000000..5f2d993 --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2020-08-26-09-31-37.bpo-41557.mcQ75z.rst @@ -0,0 +1 @@ +Update macOS installer to use SQLite 3.33.0. |