]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.15] gh-152023: Update macOS installer builds to SQLite 3.53.3 (GH-153867) (#153869)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 17 Jul 2026 22:14:43 +0000 (00:14 +0200)
committerGitHub <noreply@github.com>
Fri, 17 Jul 2026 22:14:43 +0000 (22:14 +0000)
Enable median() and percentile() functions.
(cherry picked from commit 34f109db9579fe5f597d8b00653e905b40590410)
Co-authored-by: Ned Deily <nad@python.org>
Mac/BuildScript/build-installer.py
Misc/NEWS.d/next/macOS/2026-07-17-23-20-27.gh-issue-152023.QAAgdj.rst [new file with mode: 0644]

index 9c060f3ea15632ca68bf42a0ad193fcd36f7acd6..7b43873af488018ce74e86ae00cf693da465833f 100755 (executable)
@@ -359,13 +359,14 @@ def library_recipes():
                   ),
           ),
           dict(
-              name="SQLite 3.53.2",
-              url="https://www.sqlite.org/2026/sqlite-autoconf-3530200.tar.gz",
-              checksum="588ad51949419a56ebe81fe56193d510c559eb94c9a57748387860b5d3069316",
+              name="SQLite 3.53.3",
+              url="https://www.sqlite.org/2026/sqlite-autoconf-3530300.tar.gz",
+              checksum="c917d7db16648ec95f714974ace5e5dcf46b7dc70e26600a0a102a3141125db0",
               extra_cflags=('-Os '
                             '-DSQLITE_ENABLE_FTS5 '
                             '-DSQLITE_ENABLE_FTS4 '
                             '-DSQLITE_ENABLE_FTS3_PARENTHESIS '
+                            '-DSQLITE_ENABLE_PERCENTILE '
                             '-DSQLITE_ENABLE_RTREE '
                             '-DSQLITE_OMIT_AUTOINIT '
                             '-DSQLITE_TCL=0 '
diff --git a/Misc/NEWS.d/next/macOS/2026-07-17-23-20-27.gh-issue-152023.QAAgdj.rst b/Misc/NEWS.d/next/macOS/2026-07-17-23-20-27.gh-issue-152023.QAAgdj.rst
new file mode 100644 (file)
index 0000000..afabb3d
--- /dev/null
@@ -0,0 +1,2 @@
+Update macOS installer builds to SQLite 3.53.3. Enable median() and
+percentile() functions.