diff options
author | Erlend E. Aasland <erlend@python.org> | 2023-10-10 22:41:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-10 22:41:12 (GMT) |
commit | a009bb872c57ad3317caaf4caad5327d0ff664e2 (patch) | |
tree | 76feac0bb090b8d063e80b8ab7944fd4d289d0ba /PCbuild | |
parent | 28c6cc1928bf517076a44b4112f7f56dae7f076b (diff) | |
download | cpython-a009bb872c57ad3317caaf4caad5327d0ff664e2.zip cpython-a009bb872c57ad3317caaf4caad5327d0ff664e2.tar.gz cpython-a009bb872c57ad3317caaf4caad5327d0ff664e2.tar.bz2 |
[3.11] gh-109286: Update Windows installer to use SQLite 3.43.1 (#110403) (#110479)
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 60dc725..5e2781e 100644 --- a/PCbuild/get_externals.bat +++ b/PCbuild/get_externals.bat @@ -54,7 +54,7 @@ set libraries= 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.11 -set libraries=%libraries% sqlite-3.42.0.0 +set libraries=%libraries% sqlite-3.43.1.0 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tcl-core-8.6.12.1 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tk-8.6.12.1 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tix-8.4.3.6 diff --git a/PCbuild/python.props b/PCbuild/python.props index 35c6e92..496bc3d 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.42.0.0\</sqlite3Dir> + <sqlite3Dir Condition="$(sqlite3Dir) == ''">$(ExternalsDir)sqlite-3.43.1.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 d6149a3..6a2c7a95 100644 --- a/PCbuild/readme.txt +++ b/PCbuild/readme.txt @@ -187,7 +187,7 @@ _ssl again when building. _sqlite3 - Wraps SQLite 3.42.0, which is itself built by sqlite3.vcxproj + Wraps SQLite 3.43.1, which is itself built by sqlite3.vcxproj Homepage: https://www.sqlite.org/ _tkinter |