[Python-checkins] cpython (3.4): Issue #19450: Update Windows builds to use SQLite 3.8.11.0

steve.dower python-checkins at python.org
Tue Jul 28 20:39:05 CEST 2015


https://hg.python.org/cpython/rev/1003746ee7a0
changeset:   97101:1003746ee7a0
branch:      3.4
parent:      97098:fd3fb122c5ff
user:        Steve Dower <steve.dower at microsoft.com>
date:        Tue Jul 28 11:05:18 2015 -0700
summary:
  Issue #19450: Update Windows builds to use SQLite 3.8.11.0

files:
  Misc/NEWS                 |  2 ++
  PCbuild/get_externals.bat |  2 +-
  PCbuild/pyproject.props   |  2 +-
  PCbuild/readme.txt        |  2 +-
  4 files changed, 5 insertions(+), 3 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,8 @@
 Library
 -------
 
+- Issue #19450: Update Windows builds to use SQLite 3.8.11.0
+
 - Issue #23441: rcompleter now prints a tab character instead of displaying
   possible completions for an empty word.  Initial patch by Martin Sekera.
 
diff --git a/PCbuild/get_externals.bat b/PCbuild/get_externals.bat
--- a/PCbuild/get_externals.bat
+++ b/PCbuild/get_externals.bat
@@ -58,7 +58,7 @@
             tcl-8.6.1.0
             tk-8.6.1.0
             tix-8.4.3.4
-            sqlite-3.8.3.1
+            sqlite-3.8.11.0
             xz-5.0.5
             ) do (
     if exist %%e (
diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props
--- a/PCbuild/pyproject.props
+++ b/PCbuild/pyproject.props
@@ -17,7 +17,7 @@
     <PythonExe>$(OutDir)python$(PyDebugExt).exe</PythonExe>
     <KillPythonExe>$(OutDir)kill_python$(PyDebugExt).exe</KillPythonExe>
     <externalsDir>..\externals</externalsDir>
-    <sqlite3Dir>$(externalsDir)\sqlite-3.8.3.1</sqlite3Dir>
+    <sqlite3Dir>$(externalsDir)\sqlite-3.8.11.0</sqlite3Dir>
     <bz2Dir>$(externalsDir)\bzip2-1.0.6</bz2Dir>
     <lzmaDir>$(externalsDir)\xz-5.0.5</lzmaDir>
     <opensslDir>$(externalsDir)\openssl-1.0.2d</opensslDir>
diff --git a/PCbuild/readme.txt b/PCbuild/readme.txt
--- a/PCbuild/readme.txt
+++ b/PCbuild/readme.txt
@@ -214,7 +214,7 @@
     The ssl sub-project does not have the ability to clean the OpenSSL
     build; if you need to rebuild, you'll have to clean it by hand.
 _sqlite3
-    Wraps SQLite 3.8.3.1, which is itself built by sqlite3.vcxproj
+    Wraps SQLite 3.8.11.0, which is itself built by sqlite3.vcxproj
     Homepage:
         http://www.sqlite.org/
 _tkinter

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list