We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f49c59 commit 02b096dCopy full SHA for 02b096d
.circleci/config.yml
@@ -779,7 +779,8 @@ jobs:
779
steps:
780
- checkout
781
- run: sudo apt-get -y install rake
782
- - run: sudo pip install mkwheelhouse sphinx awscli wrapt
+ # Sphinx 1.7.5 is required otherwise docs are not properly built
783
+ - run: sudo pip install mkwheelhouse sphinx==1.7.5 awscli wrapt
784
- run: S3_DIR=trace rake release:docs
785
786
wait_all_tests:
Rakefile
@@ -87,8 +87,7 @@ end
87
88
desc "build the docs"
89
task :docs do
90
- # Sphinx 1.7.5 is required otherwise docs are not properly built
91
- sh "pip install sphinx==1.7.5"
+ sh "pip install sphinx"
92
Dir.chdir 'docs' do
93
sh "make html"
94
end
0 commit comments