Skip to content

Commit db5c6dc

Browse files
authored
split out docs deps in setup extras (#390) (#391)
1 parent 9b5daea commit db5c6dc

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

setup.py

+8-5
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,13 @@
6060
"flake8>=3.8.3",
6161
"flaky>=3.7.0",
6262
"isort>=5.7.0",
63+
"pytest>=6.0.0",
64+
"wheel>=0.36.2",
65+
"onnxruntime>=1.0.0",
66+
"matplotlib>=3.0.0",
67+
]
68+
69+
_docs_deps = [
6370
"m2r2~=0.2.7",
6471
"mistune==0.8.4",
6572
"myst-parser~=0.14.0",
@@ -68,11 +75,7 @@
6875
"sphinx-copybutton>=0.3.0",
6976
"sphinx-markdown-tables>=0.0.15",
7077
"sphinx-multiversion==0.2.4",
71-
"pytest>=6.0.0",
7278
"sphinx-rtd-theme",
73-
"wheel>=0.36.2",
74-
"onnxruntime>=1.0.0",
75-
"matplotlib>=3.0.0",
7679
]
7780

7881

@@ -87,7 +90,7 @@ def _setup_install_requires() -> List:
8790

8891

8992
def _setup_extras() -> Dict:
90-
return {"dev": _dev_deps, "nb": _notebook_deps}
93+
return {"dev": _dev_deps, "nb": _notebook_deps, "docs": _docs_deps}
9194

9295

9396
def _setup_entry_points() -> Dict:

0 commit comments

Comments
 (0)