Skip to content

Commit 02b096d

Browse files
author
Emanuele Palazzetti
committed
[docs] fix sphinx permissions
1 parent 6f49c59 commit 02b096d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,8 @@ jobs:
779779
steps:
780780
- checkout
781781
- run: sudo apt-get -y install rake
782-
- run: sudo pip install mkwheelhouse sphinx awscli wrapt
782+
# Sphinx 1.7.5 is required otherwise docs are not properly built
783+
- run: sudo pip install mkwheelhouse sphinx==1.7.5 awscli wrapt
783784
- run: S3_DIR=trace rake release:docs
784785

785786
wait_all_tests:

Rakefile

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

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

0 commit comments

Comments
 (0)