diff options
author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2024-04-16 22:10:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-16 22:10:05 (GMT) |
commit | de0dc68b8263da4e3e69d517f303b9b08b36f142 (patch) | |
tree | f22974a32ad0c9743ee1d49ad183b083ee7ec825 /PCbuild | |
parent | 919784737c69e0f8e34d7d7a2e85b02628af6e66 (diff) | |
download | cpython-de0dc68b8263da4e3e69d517f303b9b08b36f142.zip cpython-de0dc68b8263da4e3e69d517f303b9b08b36f142.tar.gz cpython-de0dc68b8263da4e3e69d517f303b9b08b36f142.tar.bz2 |
gh-115009: Update Windows installer to use SQLite 3.45.3 (GH-117445)
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/get_externals.bat | 2 | ||||
-rw-r--r-- | PCbuild/python.props | 2 | ||||
-rw-r--r-- | PCbuild/readme.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/PCbuild/get_externals.bat b/PCbuild/get_externals.bat index f5b7e11..8f07c41 100644 --- a/PCbuild/get_externals.bat +++ b/PCbuild/get_externals.bat @@ -55,7 +55,7 @@ set libraries=%libraries% bzip2-1.0.8 if NOT "%IncludeLibffiSrc%"=="false" set libraries=%libraries% libffi-3.4.4 if NOT "%IncludeSSLSrc%"=="false" set libraries=%libraries% openssl-3.0.13 set libraries=%libraries% mpdecimal-2.5.1 -set libraries=%libraries% sqlite-3.45.1.0 +set libraries=%libraries% sqlite-3.45.3.0 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tcl-core-8.6.13.1 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tk-8.6.13.1 set libraries=%libraries% xz-5.2.5 diff --git a/PCbuild/python.props b/PCbuild/python.props index a8d0807..9f8b42d 100644 --- a/PCbuild/python.props +++ b/PCbuild/python.props @@ -68,7 +68,7 @@ <Import Project="$(ExternalProps)" Condition="$(ExternalProps) != '' and Exists('$(ExternalProps)')" /> <PropertyGroup> - <sqlite3Dir Condition="$(sqlite3Dir) == ''">$(ExternalsDir)sqlite-3.45.1.0\</sqlite3Dir> + <sqlite3Dir Condition="$(sqlite3Dir) == ''">$(ExternalsDir)sqlite-3.45.3.0\</sqlite3Dir> <bz2Dir Condition="$(bz2Dir) == ''">$(ExternalsDir)bzip2-1.0.8\</bz2Dir> <lzmaDir Condition="$(lzmaDir) == ''">$(ExternalsDir)xz-5.2.5\</lzmaDir> <libffiDir Condition="$(libffiDir) == ''">$(ExternalsDir)libffi-3.4.4\</libffiDir> diff --git a/PCbuild/readme.txt b/PCbuild/readme.txt index 1fdd8a4..f4dfe0e 100644 --- a/PCbuild/readme.txt +++ b/PCbuild/readme.txt @@ -191,7 +191,7 @@ _ssl again when building. _sqlite3 - Wraps SQLite 3.45.1, which is itself built by sqlite3.vcxproj + Wraps SQLite 3.45.3, which is itself built by sqlite3.vcxproj Homepage: https://www.sqlite.org/ _tkinter |