File: move_sphinxcontrib_to_extras_require.diff

package info (click to toggle)
sphinx 8.2.3-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 26,708 kB
  • sloc: python: 105,856; javascript: 6,474; perl: 447; makefile: 178; sh: 37; xml: 19; ansic: 2
file content (40 lines) | stat: -rw-r--r-- 1,170 bytes parent folder | download | duplicates (3)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
From: Dmitry Shachnev <mitya57@debian.org>
Date: Fri, 7 Feb 2020 13:59:30 +0300
Subject: Move sphinxcontrib modules to extras_require

---
 pyproject.toml | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/pyproject.toml b/pyproject.toml
index 1c0167a..cf97b13 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -67,12 +67,6 @@ classifiers = [
     "Typing :: Typed",
 ]
 dependencies = [
-    "sphinxcontrib-applehelp>=1.0.7",
-    "sphinxcontrib-devhelp>=1.0.6",
-    "sphinxcontrib-htmlhelp>=2.0.6",
-    "sphinxcontrib-jsmath>=1.0.1",
-    "sphinxcontrib-qthelp>=1.0.6",
-    "sphinxcontrib-serializinghtml>=1.1.9",
     "Jinja2>=3.1",
     "Pygments>=2.17",
     "docutils>=0.20,<0.22",
@@ -115,6 +109,14 @@ test = [
     "setuptools>=70.0",  # for Cython compilation
     "typing_extensions>=4.9",  # for typing_extensions.Unpack
 ]
+sphinxcontrib = [
+    "sphinxcontrib-applehelp>=1.0.7",
+    "sphinxcontrib-devhelp>=1.0.6",
+    "sphinxcontrib-htmlhelp>=2.0.6",
+    "sphinxcontrib-jsmath>=1.0.1",
+    "sphinxcontrib-qthelp>=1.0.6",
+    "sphinxcontrib-serializinghtml>=1.1.9",
+]
 
 [[project.authors]]
 name = "Adam Turner"