diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2020-10-05 10:09:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-05 01:09:16 -0700 |
commit | 9a7642667a71a27b38b96eb63df45f17f48b3467 (patch) | |
tree | 72f30dce77b81a53b675bf2be9e3c9d953dda15f /Mac | |
parent | bpo-41428: Documentation for PEP 604 (gh-22517) (diff) | |
download | cpython-9a7642667a71a27b38b96eb63df45f17f48b3467.tar.gz cpython-9a7642667a71a27b38b96eb63df45f17f48b3467.tar.bz2 cpython-9a7642667a71a27b38b96eb63df45f17f48b3467.zip |
bpo-41557: Update macOS installer to use SQLite 3.33.0 (GH-21959)
https://sqlite.org/releaselog/3_33_0.html
Diffstat (limited to 'Mac')
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index a58b922ce30..2548b212d9e 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 ' |