We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cb790d commit 80ee88bCopy full SHA for 80ee88b
docs/conf.py
@@ -18,9 +18,12 @@
18
# documentation root, use os.path.abspath to make it absolute, like shown here.
19
#
20
import os
21
+import pkg_resources
22
import sys
23
sys.path.insert(0, os.path.abspath('..'))
24
25
+__version__ = pkg_resources.get_distribution('chainerrl').version
26
+
27
28
# -- General configuration ------------------------------------------------
29
@@ -62,9 +65,9 @@
62
65
# built documents.
63
66
64
67
# The short X.Y version.
-version = '0.0'
68
+version = __version__
69
# The full version, including alpha/beta/rc tags.
-release = '0.1.0'
70
+release = __version__
71
72
# The language for content autogenerated by Sphinx. Refer to documentation
73
# for a list of supported languages.
0 commit comments