diff options
author | Georg Brandl <georg@python.org> | 2010-03-13 10:56:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-03-13 10:56:09 (GMT) |
commit | d94b4a75e8d49a06798b0a0d6eb3d6f567aa3397 (patch) | |
tree | 05af9605c14ee561686a10115c0c32047a8e82f4 /Doc/Makefile | |
parent | f673f0c40c663c96539950ecd11333715e621c57 (diff) | |
download | cpython-d94b4a75e8d49a06798b0a0d6eb3d6f567aa3397.zip cpython-d94b4a75e8d49a06798b0a0d6eb3d6f567aa3397.tar.gz cpython-d94b4a75e8d49a06798b0a0d6eb3d6f567aa3397.tar.bz2 |
Merged revisions 78910 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78910 | georg.brandl | 2010-03-13 11:54:12 +0100 (Sa, 13 Mär 2010) | 1 line
Bump externals versions for doc build.
........
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 31670ad..c4a1a57 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -33,19 +33,19 @@ help: checkout: @if [ ! -d tools/sphinx ]; then \ echo "Checking out Sphinx..."; \ - svn checkout $(SVNROOT)/external/Sphinx-0.6.3/sphinx tools/sphinx; \ + svn checkout $(SVNROOT)/external/Sphinx-0.6.5/sphinx tools/sphinx; \ fi @if [ ! -d tools/docutils ]; then \ echo "Checking out Docutils..."; \ - svn checkout $(SVNROOT)/external/docutils-0.5/docutils tools/docutils; \ + svn checkout $(SVNROOT)/external/docutils-0.6/docutils tools/docutils; \ fi @if [ ! -d tools/jinja2 ]; then \ echo "Checking out Jinja..."; \ - svn checkout $(SVNROOT)/external/Jinja-2.1.1/jinja2 tools/jinja2; \ + svn checkout $(SVNROOT)/external/Jinja-2.3.1/jinja2 tools/jinja2; \ fi @if [ ! -d tools/pygments ]; then \ echo "Checking out Pygments..."; \ - svn checkout $(SVNROOT)/external/Pygments-1.1.1/pygments tools/pygments; \ + svn checkout $(SVNROOT)/external/Pygments-1.3.1/pygments tools/pygments; \ fi update: clean checkout |