From b5ffcc302c01c804349805e5e86154824d48bce7 Mon Sep 17 00:00:00 2001 From: Akihiro Motoki Date: Sun, 29 Mar 2020 12:48:38 +0900 Subject: [PATCH] Update sphinx-testing requirements to >=1.0.1 During the investigaion of the mailing list thread [1], it turns out that our test does work with sphinx-testing<1.0.1 and requires sphinx-testing==1.0.1. read_text() method is from sphinx_testing.path.path class but str is returned as app.outdir in test setUp() with sphinx-testing<1.0.1. [1] http://lists.openstack.org/pipermail/openstack-discuss/2020-March/013653.html Change-Id: I35d6d4bed2e069a51794cc2a9baa8288869d894e --- test-requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-requirements.txt b/test-requirements.txt index bdfd2b0..c8820ce 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -8,6 +8,6 @@ coverage!=4.4,>=4.0 # Apache-2.0 python-subunit>=1.0.0 # Apache-2.0/BSD testrepository>=0.0.18 # Apache-2.0/BSD testtools>=2.2.0 # MIT -sphinx-testing>=0.7.2 # BSD License +sphinx-testing>=1.0.1 # BSD License beautifulsoup4>=4.6.0 # MIT stestr>=2.0.0 # Apache-2.0