aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/sphinx/conf.py
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2018-03-11 13:55:25 +0100
committerGravatar Maxime Dénès <mail@maximedenes.fr>2018-03-13 12:45:31 +0100
commit815bdef747f7d69f25121f42ec72d109ec92edfe (patch)
tree4db845dff85346033fee6746b7087acd4d6a033d /doc/sphinx/conf.py
parent8cb2b6a00d71572d60d4dcc4e7ec697fd3933389 (diff)
[Sphinx] Read version number from configure
Diffstat (limited to 'doc/sphinx/conf.py')
-rwxr-xr-xdoc/sphinx/conf.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/sphinx/conf.py b/doc/sphinx/conf.py
index 0c8797b0e..cfca4ca65 100755
--- a/doc/sphinx/conf.py
+++ b/doc/sphinx/conf.py
@@ -32,6 +32,9 @@ sys.setrecursionlimit(1500)
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.append(os.path.abspath('../tools/'))
+sys.path.append(os.path.abspath('../../config/'))
+
+import coq_config
# -- General configuration ------------------------------------------------
@@ -72,9 +75,9 @@ author = 'The Coq Development Team'
# built documents.
#
# The short X.Y version.
-version = '8.7'
+version = coq_config.version
# The full version, including alpha/beta/rc tags.
-release = '8.7.dev'
+release = coq_config.version
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.