File: 0004-Do-not-enforce-minimum-Sphinx-version.patch

package info (click to toggle)
python-hypothesis 6.138.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 15,272 kB
  • sloc: python: 62,853; ruby: 1,107; sh: 253; makefile: 41; javascript: 6
file content (25 lines) | stat: -rw-r--r-- 858 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
From: =?utf-8?q?Timo_R=C3=B6hling?= <roehling@debian.org>
Date: Thu, 2 May 2024 11:11:06 +0200
Subject: Do not enforce minimum Sphinx version

---
 hypothesis-python/docs/conf.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/hypothesis-python/docs/conf.py b/hypothesis-python/docs/conf.py
index da8a77a..0ffc1a9 100644
--- a/hypothesis-python/docs/conf.py
+++ b/hypothesis-python/docs/conf.py
@@ -21,9 +21,9 @@ root = Path(__file__).parent.parent
 sys.path.append(str(root / "src"))
 sys.path.append(str(Path(__file__).parent / "_ext"))
 
-needs_sphinx = re.search(
-    r"sphinx==([0-9\.]+)", root.joinpath("../requirements/tools.txt").read_text()
-).group(1)
+#needs_sphinx = re.search(
+#    r"sphinx==([0-9\.]+)", root.joinpath("../requirements/tools.txt").read_text()
+#).group(1)
 default_role = "py:obj"
 nitpicky = True