Skip to content

Commit 6573504

Browse files
authored
Require pipes for building Python 3.5 (#297)
1 parent c215a78 commit 6573504

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_docs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def requirements(self) -> list[str]:
212212
if self.name in {"3.7", "3.6", "2.7"}:
213213
return reqs + ["sphinx==2.3.1"]
214214
if self.name == "3.5":
215-
return reqs + ["sphinx==1.8.4"]
215+
return reqs + ["sphinx==1.8.4", "standard-pipes"]
216216
raise ValueError("unreachable")
217217

218218
@property

0 commit comments

Comments
 (0)