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: Windows make.bat fails on 2.7
Type: behavior Stage: resolved
Components: Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: eric.araujo, ezio.melotti, georg.brandl, python-dev, terry.reedy
Priority: normal Keywords:

Created on 2013-03-13 22:10 by terry.reedy, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg184115 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2013-03-13 22:10
From Command Prompt
'''
F:\Python\dev\py27\Doc>make html
Running Sphinx v0.6.7

Extension error:
Could not import extension pyspecific (exception: No module named nodes)
'''
Note the old version of Sphinx installed by make checkout. I updated make.bat sphinx download to 1.0.7, the same as all the 3.x make.bats, deleted tools/sphinx (otherwise, svn refuses to redownload), and redid 'make checkout' and 'make html', I got 'build succeeded'. I loaded index.html and the doc files seemed normal (except be being more sprightly due to files being local ;-). I loaded the library manual, followed links, and tested the two indexes.

Was not updating 2.7 make.bat an oversight and is this simple fix the right one? or do 2.7 docs need the old version, albeit with the missing nodes module added?
msg184197 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-03-14 22:05
On Linux "make html" seems to use v1.0.7 too, so updating make.bat should be OK.
See also #16471.
msg184207 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-03-14 23:32
New changeset 7338e7ec47f0 by Terry Jan Reedy in branch '2.7':
Issue #17412: update 2.7 Doc/make.bat to also use sphinx-1.0.7.
http://hg.python.org/cpython/rev/7338e7ec47f0
History
Date User Action Args
2022-04-11 14:57:42adminsetgithub: 61614
2013-03-14 23:33:23terry.reedysetstatus: open -> closed
resolution: fixed
stage: needs patch -> resolved
2013-03-14 23:32:41python-devsetnosy: + python-dev
messages: + msg184207
2013-03-14 22:05:05ezio.melottisetmessages: + msg184197
2013-03-13 22:10:18terry.reedycreate