Sphinx不会更改版本号

时间:2014-05-05 10:15:20

标签: python documentation python-sphinx

我在conf.py中更改了项目的版本号:

version = '0.0.2'

但是当我生成一个新的html(make html)时,版本总是:0.0.1。

有什么建议吗?

2 个答案:

答案 0 :(得分:3)

你应该更新发布版本=''在conf.py.版本是内部的短x.y版本。 Release是sphinx构建期间添加到项目中的完整版本。

在你的conf.py中改变。

# The full version, including alpha/beta/rc tags.
release = '0.0.2'

然后重新运行make html。

答案 1 :(得分:1)

只是为了加入讨论。您可以简化工作流程,如果您的版本通常与版本相同,您可以这样说:

# The short X.Y version.
version = '0.0.1'
# The full version, including alpha/beta/rc tags.
release = version

然后您只需要更改第一个值。