Skip to content

Commit 1382c32

Browse files
author
Erlend Egeberg Aasland
authored
bpo-38380: Update macOS & Windows builds to SQLite v3.31.1 (GH-18678)
Automerge-Triggered-By: @zooba
1 parent 2110551 commit 1382c32

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

Mac/BuildScript/build-installer.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -313,9 +313,9 @@ def library_recipes():
313313
),
314314
),
315315
dict(
316-
name="SQLite 3.28.0",
317-
url="https://www.sqlite.org/2019/sqlite-autoconf-3280000.tar.gz",
318-
checksum='3c68eb400f8354605736cd55400e1572',
316+
name="SQLite 3.31.1",
317+
url="https://sqlite.org/2020/sqlite-autoconf-3310100.tar.gz",
318+
checksum='2d0a553534c521504e3ac3ad3b90f125',
319319
extra_cflags=('-Os '
320320
'-DSQLITE_ENABLE_FTS5 '
321321
'-DSQLITE_ENABLE_FTS4 '
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update Windows builds to use SQLite 3.31.1
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update macOS builds to use SQLite 3.31.1

PCbuild/get_externals.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ set libraries=
5454
set libraries=%libraries% bzip2-1.0.6
5555
if NOT "%IncludeLibffiSrc%"=="false" set libraries=%libraries% libffi
5656
if NOT "%IncludeSSLSrc%"=="false" set libraries=%libraries% openssl-1.1.1d
57-
set libraries=%libraries% sqlite-3.28.0.0
57+
set libraries=%libraries% sqlite-3.31.1.0
5858
if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tcl-core-8.6.9.0
5959
if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tk-8.6.9.0
6060
if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tix-8.4.3.6

PCbuild/python.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<ExternalsDir>$(EXTERNALS_DIR)</ExternalsDir>
5757
<ExternalsDir Condition="$(ExternalsDir) == ''">$([System.IO.Path]::GetFullPath(`$(PySourcePath)externals`))</ExternalsDir>
5858
<ExternalsDir Condition="!HasTrailingSlash($(ExternalsDir))">$(ExternalsDir)\</ExternalsDir>
59-
<sqlite3Dir>$(ExternalsDir)sqlite-3.28.0.0\</sqlite3Dir>
59+
<sqlite3Dir>$(ExternalsDir)sqlite-3.31.1.0\</sqlite3Dir>
6060
<bz2Dir>$(ExternalsDir)bzip2-1.0.6\</bz2Dir>
6161
<lzmaDir>$(ExternalsDir)xz-5.2.2\</lzmaDir>
6262
<libffiDir>$(ExternalsDir)libffi\</libffiDir>

PCbuild/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ _ssl
184184
again when building.
185185

186186
_sqlite3
187-
Wraps SQLite 3.28.0.0, which is itself built by sqlite3.vcxproj
187+
Wraps SQLite 3.31.1.0, which is itself built by sqlite3.vcxproj
188188
Homepage:
189189
http://www.sqlite.org/
190190
_tkinter

0 commit comments

Comments
 (0)