diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-11-13 23:14:24 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-11-13 23:14:24 (GMT) |
commit | 864b3f08d8df8c0dd6a085d3c74f049997b83869 (patch) | |
tree | 4169472cbccaaa1313d0d3f29b5d90969b2b3aec | |
parent | 5bab5080850b68be5e1cd804c0cc5168d0e8882a (diff) | |
download | cpython-864b3f08d8df8c0dd6a085d3c74f049997b83869.zip cpython-864b3f08d8df8c0dd6a085d3c74f049997b83869.tar.gz cpython-864b3f08d8df8c0dd6a085d3c74f049997b83869.tar.bz2 |
Merged revisions 76255 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r76255 | benjamin.peterson | 2009-11-13 17:11:54 -0600 (Fri, 13 Nov 2009) | 1 line
use Sphinx 0.6.3
........
-rw-r--r-- | Doc/Makefile | 2 | ||||
-rw-r--r-- | Doc/make.bat | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 146e1b3..519a1c9 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -32,7 +32,7 @@ help: checkout: @if [ ! -d tools/sphinx ]; then \ echo "Checking out Sphinx..."; \ - svn checkout $(SVNROOT)/external/Sphinx-0.6.2/sphinx tools/sphinx; \ + svn checkout $(SVNROOT)/external/Sphinx-0.6.3/sphinx tools/sphinx; \ fi @if [ ! -d tools/docutils ]; then \ echo "Checking out Docutils..."; \ diff --git a/Doc/make.bat b/Doc/make.bat index 0b618e3..aeb8974 100644 --- a/Doc/make.bat +++ b/Doc/make.bat @@ -34,7 +34,7 @@ echo. goto end
:checkout
-svn co %SVNROOT%/external/Sphinx-0.6.2/sphinx tools/sphinx
+svn co %SVNROOT%/external/Sphinx-0.6.3/sphinx tools/sphinx
svn co %SVNROOT%/external/docutils-0.5/docutils tools/docutils
svn co %SVNROOT%/external/Jinja-2.1.1/jinja2 tools/jinja2
svn co %SVNROOT%/external/Pygments-0.11.1/pygments tools/pygments
|