Skip to content

Commit 89bf194

Browse files
pythongh-129917: Update installers to use SQLite 3.49
1 parent 92e5f82 commit 89bf194

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

Android/android.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def make_build_python(context):
139139
def unpack_deps(host):
140140
deps_url = "https://github.com/beeware/cpython-android-source-deps/releases/download"
141141
for name_ver in ["bzip2-1.0.8-2", "libffi-3.4.4-3", "openssl-3.0.15-4",
142-
"sqlite-3.45.3-3", "xz-5.4.6-1"]:
142+
"sqlite-3.49.1-0", "xz-5.4.6-1"]:
143143
filename = f"{name_ver}-{host}.tar.gz"
144144
download(f"{deps_url}/{name_ver}/{filename}")
145145
run(["tar", "-xf", filename])

Mac/BuildScript/build-installer.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -359,9 +359,9 @@ def library_recipes():
359359
),
360360
),
361361
dict(
362-
name="SQLite 3.45.3",
363-
url="https://sqlite.org/2024/sqlite-autoconf-3450300.tar.gz",
364-
checksum="b2809ca53124c19c60f42bf627736eae011afdcc205bb48270a5ee9a38191531",
362+
name="SQLite 3.39.1",
363+
url="https://sqlite.org/2025/sqlite-autoconf-3490100.tar.gz",
364+
checksum="106642d8ccb36c5f7323b64e4152e9b719f7c0215acf5bfeac3d5e7f97b59254",
365365
extra_cflags=('-Os '
366366
'-DSQLITE_ENABLE_FTS5 '
367367
'-DSQLITE_ENABLE_FTS4 '

Misc/externals.spdx.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -94,18 +94,18 @@
9494
"checksumValue": "730e4a3efd6a63828bee499940fb13acc2a32c182502ce8a1d970387895d0504"
9595
}
9696
],
97-
"downloadLocation": "https://github.com/python/cpython-source-deps/archive/refs/tags/sqlite-3.45.3.0.tar.gz",
97+
"downloadLocation": "https://github.com/python/cpython-source-deps/archive/refs/tags/sqlite-3.49.1.0.tar.gz",
9898
"externalRefs": [
9999
{
100100
"referenceCategory": "SECURITY",
101-
"referenceLocator": "cpe:2.3:a:sqlite:sqlite:3.45.3.0:*:*:*:*:*:*:*",
101+
"referenceLocator": "cpe:2.3:a:sqlite:sqlite:3.49.1.0:*:*:*:*:*:*:*",
102102
"referenceType": "cpe23Type"
103103
}
104104
],
105105
"licenseConcluded": "NOASSERTION",
106106
"name": "sqlite",
107107
"primaryPackagePurpose": "SOURCE",
108-
"versionInfo": "3.45.3.0"
108+
"versionInfo": "3.49.1.0"
109109
},
110110
{
111111
"SPDXID": "SPDXRef-PACKAGE-tcl-core",
@@ -193,4 +193,4 @@
193193
}
194194
],
195195
"spdxVersion": "SPDX-2.3"
196-
}
196+
}

PCbuild/get_externals.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ set libraries=%libraries% bzip2-1.0.8
5555
if NOT "%IncludeLibffiSrc%"=="false" set libraries=%libraries% libffi-3.4.4
5656
if NOT "%IncludeSSLSrc%"=="false" set libraries=%libraries% openssl-3.0.15
5757
set libraries=%libraries% mpdecimal-4.0.0
58-
set libraries=%libraries% sqlite-3.45.3.0
58+
set libraries=%libraries% sqlite-3.49.1.0
5959
if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tcl-core-8.6.15.0
6060
if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tk-8.6.15.0
6161
set libraries=%libraries% xz-5.2.5

PCbuild/python.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
<Import Project="$(ExternalProps)" Condition="$(ExternalProps) != '' and Exists('$(ExternalProps)')" />
6565

6666
<PropertyGroup>
67-
<sqlite3Dir Condition="$(sqlite3Dir) == ''">$(ExternalsDir)sqlite-3.45.3.0\</sqlite3Dir>
67+
<sqlite3Dir Condition="$(sqlite3Dir) == ''">$(ExternalsDir)sqlite-3.49.1.0\</sqlite3Dir>
6868
<bz2Dir Condition="$(bz2Dir) == ''">$(ExternalsDir)bzip2-1.0.8\</bz2Dir>
6969
<lzmaDir Condition="$(lzmaDir) == ''">$(ExternalsDir)xz-5.2.5\</lzmaDir>
7070
<libffiDir Condition="$(libffiDir) == ''">$(ExternalsDir)libffi-3.4.4\</libffiDir>

PCbuild/readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ _ssl
230230
again when building.
231231

232232
_sqlite3
233-
Wraps SQLite 3.45.3, which is itself built by sqlite3.vcxproj
233+
Wraps SQLite 3.49.1, which is itself built by sqlite3.vcxproj
234234
Homepage:
235235
https://www.sqlite.org/
236236
_tkinter

0 commit comments

Comments
 (0)