Skip to content

Commit 6f49c59

Browse files
author
Emanuele Palazzetti
authored
[docs] downgrade Sphinx to 1.7.5 (#545)
1 parent 6d3546a commit 6f49c59

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Rakefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ end
8787

8888
desc "build the docs"
8989
task :docs do
90-
sh "pip install sphinx"
90+
# Sphinx 1.7.5 is required otherwise docs are not properly built
91+
sh "pip install sphinx==1.7.5"
9192
Dir.chdir 'docs' do
9293
sh "make html"
9394
end

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
# Add any paths that contain custom static files (such as style sheets) here,
161161
# relative to this directory. They are copied after the builtin static files,
162162
# so a file named "default.css" will overwrite the builtin "default.css".
163-
html_static_path = ['_static']
163+
# html_static_path = ['_static']
164164

165165
# Add any extra paths that contain custom files (such as robots.txt or
166166
# .htaccess) here, relative to this directory. These files are copied

0 commit comments

Comments
 (0)