|
30 | 30 | # -- Project information -----------------------------------------------------
|
31 | 31 |
|
32 | 32 | project = u'Python Control Systems Library'
|
33 |
| -copyright = u'2018, python-control.org' |
| 33 | +copyright = u'2019, python-control.org' |
34 | 34 | author = u'Python Control Developers'
|
35 | 35 |
|
36 | 36 | # Version information - read from the source code
|
37 | 37 | import re
|
38 | 38 | import control
|
39 | 39 |
|
40 |
| -# The short X.Y version |
41 |
| -version = re.sub(r'(\d+\.\d+)\.(.*)', r'\1', control.__version__) |
| 40 | +# The short X.Y.Z version |
| 41 | +version = re.sub(r'(\d+\.\d+\.\d+)(.*)', r'\1', control.__version__) |
42 | 42 |
|
43 | 43 | # The full version, including alpha/beta/rc tags
|
44 | 44 | release = control.__version__
|
|
109 | 109 | # The theme to use for HTML and HTML Help pages. See the documentation for
|
110 | 110 | # a list of builtin themes.
|
111 | 111 | #
|
112 |
| -# html_theme = 'alabaster' |
| 112 | +html_theme = 'sphinx_rtd_theme' |
113 | 113 |
|
114 | 114 | # Theme options are theme-specific and customize the look and feel of a theme
|
115 | 115 | # further. For a list of options available for each theme, see the
|
|
120 | 120 | # Add any paths that contain custom static files (such as style sheets) here,
|
121 | 121 | # relative to this directory. They are copied after the builtin static files,
|
122 | 122 | # so a file named "default.css" will overwrite the builtin "default.css".
|
123 |
| -html_static_path = ['_static'] |
| 123 | +# html_static_path = ['_static'] |
124 | 124 |
|
125 | 125 | # Custom sidebar templates, must be a dictionary that maps document names
|
126 | 126 | # to template names.
|
|
0 commit comments