This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Build files in PC/VS9.0 contain an outdated sqlite version number
Type: compile error Stage: resolved
Components: Build, Windows Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: anselm.kruis, paul.moore, python-dev, steve.dower, tim.golden, zach.ware
Priority: normal Keywords: patch

Created on 2016-10-31 16:43 by anselm.kruis, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
fix-sqlite-version.patch anselm.kruis, 2016-10-31 16:43 patch to change the sqlite version in PC/VS9.0 review
Messages (3)
msg279802 - (view) Author: Anselm Kruis (anselm.kruis) * Date: 2016-10-31 16:43
Python 2.7 only. Tested with 2.7.12.

Commit fa68df1d5e65 for #19450 changes the sqlite version for Python 2.7 on Windows from 3.6.21 to 3.8.11.0, but only for the build files in PCbuild. The documentation states, that the build files under PC\VS9.0 are also fully supported, but they still refer to sqlite version 3.6.21. This causes the command "PC\VS9.0\build.bat -r -e" to fail, because it first fetches sqlite 3.9.11.0 from svn.python.org and then tries to build sqlite 3.6.21, which is of course not available.

The attached patch fixes the problem.
msg279853 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-11-01 06:44
New changeset 8f9c54a75c3d by Zachary Ware in branch '2.7':
Closes #28568: Fix VS9.0 build files to use sqlite 3.8.11.0
https://hg.python.org/cpython/rev/8f9c54a75c3d
msg279854 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2016-11-01 06:45
Thanks for the report and patch!
History
Date User Action Args
2022-04-11 14:58:38adminsetgithub: 72754
2016-11-01 06:45:17zach.waresetmessages: + msg279854
2016-11-01 06:44:49python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg279853

resolution: fixed
stage: resolved
2016-10-31 16:43:09anselm.kruiscreate