From 73ca11b148a940690a107aea87772c191bc4f31b Mon Sep 17 00:00:00 2001 From: Igor Duarte Cardoso Date: Tue, 30 May 2017 14:42:11 +0000 Subject: [PATCH] Fix docs by limiting sphinx requirement to <1.6.1 The gate pulls the latest sphinx package, 1.6.2 at the moment, which, just like the ignored version 1.6.1, seems to break the docs environment. This patch thus limits sphinx to <1.6.1 instead of simply !=1.6.1. Related-Bug: #1693010 Change-Id: I30f2ac347d0a02ba9cac3665404c94582f6e0385 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 9a956574a..337ecad63 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,7 +8,7 @@ nwdiag oslosphinx>=4.7.0 # Apache-2.0 pbr>=2.0.0,!=2.1.0 # Apache-2.0 seqdiag -sphinx>=1.5.1,!=1.6.1 # BSD +sphinx>=1.5.1,<1.6.1 # BSD sphinxcontrib-actdiag sphinxcontrib-blockdiag # BSD sphinxcontrib-nwdiag