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 1
1
2011-02-26 Doug Hellmann <
[email protected] >
2
2
3
+ * docs/sphinx/conf.py: Just hard-code the version.
4
+
5
+ * setup.py: Just hard-code the version.
6
+
3
7
* virtualenvwrapper/version.py: Put the version info inside the
4
8
package so it is available to the doc build and packaging
5
9
script. This also makes the readthedocs.org build work properly.
Original file line number Diff line number Diff line change 4
4
@echo " html - HTML documentation"
5
5
@echo " docclean - Remove documentation build files"
6
6
@echo " upload - upload a new release to PyPI"
7
- @echo " website - build web version of docs"
8
- @echo " installwebsite - deploy web version of docs"
9
7
@echo " develop - install development version"
10
8
@echo " test - run the test suite"
11
9
@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"
13
12
14
13
.PHONY : sdist
15
14
sdist : html
@@ -34,9 +33,9 @@ docclean:
34
33
website :
35
34
[ ~ /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
36
35
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" )
40
39
41
40
installwebsite : website
42
41
(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 2
2
Release History
3
3
===============
4
4
5
- Dev
5
+ 2.6.3
6
6
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.
7
13
- Merged in `Japanese translation of the documentation
8
14
<http://www.doughellmann.com/docs/virtualenvwrapper/ja/> `__ from
9
15
Tetsuya Morimoto.
Original file line number Diff line number Diff line change 29
29
bitbucket_project_url = 'http://bitbucket.org/dhellmann/virtualenvwrapper/'
30
30
31
31
# 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']
36
33
37
34
# The suffix of source filenames.
38
35
source_suffix = '.rst'
45
42
46
43
# General information about the project.
47
44
project = u'virtualenvwrapper'
48
- copyright = u'2009, Doug Hellmann'
45
+ copyright = u'2009-2011 , Doug Hellmann'
49
46
50
47
# The version info for the project you're documenting, acts as replacement for
51
48
# |version| and |release|, also used in various other places throughout the
52
49
# built documents.
53
50
#
54
51
# The short X.Y version.
55
- import virtualenvwrapper .version
56
- version = virtualenvwrapper .version .VERSION
52
+ version = '2.6.3'
57
53
# The full version, including alpha/beta/rc tags.
58
54
release = version
59
55
99
95
100
96
# The theme to use for HTML and HTML Help pages. Major themes that come with
101
97
# Sphinx are currently 'default' and 'sphinxdoc'.
102
- if building_web :
103
- html_theme = 'default'
104
- else :
105
- html_theme = 'sphinxdoc'
98
+ html_theme = 'nature'
106
99
107
100
# Theme options are theme-specific and customize the look and feel of a theme
108
101
# 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 1
1
#!/usr/bin/env python
2
2
3
- import virtualenvwrapper .version
4
-
5
3
PROJECT = 'virtualenvwrapper'
6
- VERSION = virtualenvwrapper .version .VERSION
4
+
5
+ # Change docs/sphinx/conf.py too!
6
+ VERSION = '2.6.3'
7
7
8
8
# Bootstrap installation of Distribute
9
9
import distribute_setup
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments