diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-10-09 10:43:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-09 10:43:26 (GMT) |
commit | 23624462cb0df154346d932f0001997d935e30de (patch) | |
tree | fe0ac388ada821761f53167b52e41ef04c419028 | |
parent | 3ed5cb0de37a0bb9325265465a56427b90a29598 (diff) | |
download | cpython-23624462cb0df154346d932f0001997d935e30de.zip cpython-23624462cb0df154346d932f0001997d935e30de.tar.gz cpython-23624462cb0df154346d932f0001997d935e30de.tar.bz2 |
[3.12] gh-109286: Update macOS installer to use SQLite 3.43.1 (GH-110482) (#110550)
(cherry picked from commit 48419a50b44a195ad7de958f479a924e7c2d3e1b)
Co-authored-by: jtranquilli <76231120+jtranquilli@users.noreply.github.com>
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 6 | ||||
-rw-r--r-- | Misc/NEWS.d/next/macOS/2023-10-04-23-38-24.gh-issue-109286.1ZLMaq.rst | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index c54de88..a07d38a 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -359,9 +359,9 @@ def library_recipes(): ), ), dict( - name="SQLite 3.42.0", - url="https://sqlite.org/2023/sqlite-autoconf-3420000.tar.gz", - checksum="0c5a92bc51cf07cae45b4a1e94653dea", + name="SQLite 3.43.1", + url="https://sqlite.org/2023/sqlite-autoconf-3430100.tar.gz", + checksum="77e61befe9c3298da0504f87772a24b0", extra_cflags=('-Os ' '-DSQLITE_ENABLE_FTS5 ' '-DSQLITE_ENABLE_FTS4 ' diff --git a/Misc/NEWS.d/next/macOS/2023-10-04-23-38-24.gh-issue-109286.1ZLMaq.rst b/Misc/NEWS.d/next/macOS/2023-10-04-23-38-24.gh-issue-109286.1ZLMaq.rst new file mode 100644 index 0000000..18ac9df --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2023-10-04-23-38-24.gh-issue-109286.1ZLMaq.rst @@ -0,0 +1 @@ +Update macOS installer to use SQLite 3.43.1. |