mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2026-09-03 20:52:55 -05:00
On Py2 environment, conf.py that is generated by sphinx-quickstart should have u prefixed config value for 'version' and 'release'.
This commit is contained in:
@@ -57,7 +57,8 @@ Bugs fixed
|
||||
* #1994: More supporting non-standard parser (like recommonmark parser) for Translation and
|
||||
WebSupport feature. Now node.rawsource is fall backed to node.astext() during docutils
|
||||
transforming.
|
||||
|
||||
* On Py2 environment, conf.py that is generated by sphinx-quickstart should have u prefixed
|
||||
config value for 'version' and 'release'.
|
||||
|
||||
Release 1.3.1 (released Mar 17, 2015)
|
||||
=====================================
|
||||
|
||||
@@ -128,9 +128,9 @@ author = u'%(author_str)s'
|
||||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '%(version_str)s'
|
||||
version = u'%(version_str)s'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '%(release_str)s'
|
||||
release = u'%(release_str)s'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
||||
Reference in New Issue
Block a user