diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-07-20 06:37:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-20 06:37:50 (GMT) |
commit | 2fbb0d8da95b3068dff436f7aacec1058c9b3f2a (patch) | |
tree | 8854a2d3ffc4452acafd47334cac76c06c7d4c40 | |
parent | 8831162464138eb0267f4967b85710247ee95fde (diff) | |
download | cpython-2fbb0d8da95b3068dff436f7aacec1058c9b3f2a.zip cpython-2fbb0d8da95b3068dff436f7aacec1058c9b3f2a.tar.gz cpython-2fbb0d8da95b3068dff436f7aacec1058c9b3f2a.tar.bz2 |
bpo-40741: Update macOS installer to use SQLite 3.32.3 (GH-20979)
(cherry picked from commit 7cf1cb36ecafabff363790d245f809d3894fbbaf)
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 6 | ||||
-rw-r--r-- | Misc/NEWS.d/next/macOS/2020-06-19-14-19-08.bpo-40741.L7yTbm.rst | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 4fab488..a58b922 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.2", - url="https://sqlite.org/2020/sqlite-autoconf-3320200.tar.gz", - checksum='eb498918a33159cdf8104997aad29e83', + name="SQLite 3.32.3", + url="https://sqlite.org/2020/sqlite-autoconf-3320300.tar.gz", + checksum='2e3911a3c15e85c2f2d040154bbe5ce3', extra_cflags=('-Os ' '-DSQLITE_ENABLE_FTS5 ' '-DSQLITE_ENABLE_FTS4 ' diff --git a/Misc/NEWS.d/next/macOS/2020-06-19-14-19-08.bpo-40741.L7yTbm.rst b/Misc/NEWS.d/next/macOS/2020-06-19-14-19-08.bpo-40741.L7yTbm.rst new file mode 100644 index 0000000..78a21b7 --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2020-06-19-14-19-08.bpo-40741.L7yTbm.rst @@ -0,0 +1 @@ +Update macOS installer to use SQLite 3.32.3. |