Skip to content

Commit d3cbdd0

Browse files
committed
robotont-docs
- Update deps and conf
1 parent ef315ab commit d3cbdd0

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pip3 install --upgrade pip
1212
##### Getting dependencies
1313
```
1414
sudo apt install python3-sphinx
15-
pip3 install pydata-sphinx-theme
15+
pip3 install sphinx_rtd_theme
1616
```
1717

1818
* Make whatever changes you need to the docs files in `source/`

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
sphinx
22
sphinx-rtd-theme
3-
pydata-sphinx-theme
43
sphinx-copybutton
4+
sphinx-design
5+
sphinx-tabs

source/conf.py

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
# The full version, including alpha/beta/rc tags
2929
release = u'0.0.1'
3030

31-
3231
# -- General configuration ---------------------------------------------------
3332

3433
# If your documentation needs a minimal Sphinx version, state it here.
@@ -41,6 +40,8 @@
4140
extensions = [
4241
'sphinx.ext.autodoc',
4342
'sphinx_copybutton',
43+
'sphinx_design',
44+
'sphinx_tabs.tabs'
4445
]
4546

4647
# Add any paths that contain templates here, relative to this directory.
@@ -60,7 +61,7 @@
6061
#
6162
# This is also used if you do content translation via gettext catalogs.
6263
# Usually you set "language" from the command line for these cases.
63-
language = None
64+
language = 'en'
6465

6566
# List of patterns, relative to source directory, that match files and
6667
# directories to ignore when looking for source files.
@@ -70,13 +71,12 @@
7071
# The name of the Pygments (syntax highlighting) style to use.
7172
pygments_style = None
7273

73-
7474
# -- Options for HTML output -------------------------------------------------
7575

7676
# The theme to use for HTML and HTML Help pages. See the documentation for
7777
# a list of builtin themes.
7878
#
79-
html_theme = 'pydata_sphinx_theme'
79+
html_theme = 'sphinx_rtd_theme'
8080

8181
# Theme options are theme-specific and customize the look and feel of a theme
8282
# further. For a list of options available for each theme, see the
@@ -105,7 +105,6 @@
105105
# Output file base name for HTML help builder.
106106
htmlhelp_basename = 'Robotontdoc'
107107

108-
109108
# -- Options for LaTeX output ------------------------------------------------
110109

111110
latex_elements = {
@@ -134,7 +133,6 @@
134133
u'M', 'manual'),
135134
]
136135

137-
138136
# -- Options for manual page output ------------------------------------------
139137

140138
# One entry per manual page. List of tuples
@@ -144,7 +142,6 @@
144142
[author], 1)
145143
]
146144

147-
148145
# -- Options for Texinfo output ----------------------------------------------
149146

150147
# Grouping the document tree into Texinfo files. List of tuples
@@ -156,7 +153,6 @@
156153
'Miscellaneous'),
157154
]
158155

159-
160156
# -- Options for Epub output -------------------------------------------------
161157

162158
# Bibliographic Dublin Core info.
@@ -174,5 +170,4 @@
174170
# A list of files that should not be packed into the epub file.
175171
epub_exclude_files = ['search.html']
176172

177-
178173
# -- Extension configuration -------------------------------------------------

0 commit comments

Comments
 (0)