File tree Expand file tree Collapse file tree 8 files changed +23
-303
lines changed
Expand file tree Collapse file tree 8 files changed +23
-303
lines changed Original file line number Diff line number Diff line change 112011-02-26 Doug Hellmann <dhellmann@racemi.com>
22
3+ * docs/sphinx/conf.py: Just hard-code the version.
4+
5+ * setup.py: Just hard-code the version.
6+
37 * virtualenvwrapper/version.py: Put the version info inside the
48 package so it is available to the doc build and packaging
59 script. This also makes the readthedocs.org build work properly.
Original file line number Diff line number Diff line change 44 @echo " html - HTML documentation"
55 @echo " docclean - Remove documentation build files"
66 @echo " upload - upload a new release to PyPI"
7- @echo " website - build web version of docs"
8- @echo " installwebsite - deploy web version of docs"
97 @echo " develop - install development version"
108 @echo " test - run the test suite"
119 @echo " test-quick - run the test suite for bash and one version of Python ($( PYTHON26) )"
12-
10+ @echo " website - generate web version of the docs"
11+ @echo " installwebsite - copy web version of HTML docs up to server"
1312
1413.PHONY : sdist
1514sdist : html
@@ -34,9 +33,9 @@ docclean:
3433website :
3534 [ ~ /Devel/doughellmann/doughellmann/templates/base.html -nt docs/sphinx/web/templates/base.html ] && (echo " Updating base.html" ; cp ~ /Devel/doughellmann/doughellmann/templates/base.html docs/sphinx/web/templates/base.html) || exit 0
3635 rm -rf docs/website
37- (cd docs && $( MAKE) html BUILDING_WEB=1 BUILDDIR=" website/en" LANGUAGE=" en" )
38- (cd docs && $( MAKE) html BUILDING_WEB=1 BUILDDIR=" website/es" LANGUAGE=" es" )
39- (cd docs && $( MAKE) html BUILDING_WEB=1 BUILDDIR=" website/ja" LANGUAGE=" ja" )
36+ (cd docs && $( MAKE) html BUILDDIR=" website/en" LANGUAGE=" en" )
37+ (cd docs && $( MAKE) html BUILDDIR=" website/es" LANGUAGE=" es" )
38+ (cd docs && $( MAKE) html BUILDDIR=" website/ja" LANGUAGE=" ja" )
4039
4140installwebsite : website
4241 (cd docs/website/en && rsync --rsh=ssh --archive --delete --verbose . www.doughellmann.com:/var/www/doughellmann/DocumentRoot/docs/virtualenvwrapper/)
Original file line number Diff line number Diff line change 22Release History
33===============
44
5- Dev
5+ 2.6.3
66
7+ - Hard-code the version information in the setup.py and conf.py
8+ scripts so it works for http://readthedocs.org.
9+
10+ 2.6.2
11+
12+ - Attempted to make the doc build work with http://readthedocs.org.
713 - Merged in `Japanese translation of the documentation
814 <http://www.doughellmann.com/docs/virtualenvwrapper/ja/> `__ from
915 Tetsuya Morimoto.
Original file line number Diff line number Diff line change 2929bitbucket_project_url = 'http://bitbucket.org/dhellmann/virtualenvwrapper/'
3030
3131# Add any paths that contain templates here, relative to this directory.
32- if building_web :
33- templates_path = ['web/templates' ]
34- else :
35- templates_path = ['pkg/templates' ]
32+ #templates_path = ['pkg/templates']
3633
3734# The suffix of source filenames.
3835source_suffix = '.rst'
4542
4643# General information about the project.
4744project = u'virtualenvwrapper'
48- copyright = u'2009, Doug Hellmann'
45+ copyright = u'2009-2011 , Doug Hellmann'
4946
5047# The version info for the project you're documenting, acts as replacement for
5148# |version| and |release|, also used in various other places throughout the
5249# built documents.
5350#
5451# The short X.Y version.
55- import virtualenvwrapper .version
56- version = virtualenvwrapper .version .VERSION
52+ version = '2.6.3'
5753# The full version, including alpha/beta/rc tags.
5854release = version
5955
9995
10096# The theme to use for HTML and HTML Help pages. Major themes that come with
10197# Sphinx are currently 'default' and 'sphinxdoc'.
102- if building_web :
103- html_theme = 'default'
104- else :
105- html_theme = 'sphinxdoc'
98+ html_theme = 'nature'
10699
107100# Theme options are theme-specific and customize the look and feel of a theme
108101# further. For a list of options available for each theme, see the
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11#!/usr/bin/env python
22
3- import virtualenvwrapper .version
4-
53PROJECT = 'virtualenvwrapper'
6- VERSION = virtualenvwrapper .version .VERSION
4+
5+ # Change docs/sphinx/conf.py too!
6+ VERSION = '2.6.3'
77
88# Bootstrap installation of Distribute
99import distribute_setup
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments