We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3076945 commit 10acda9Copy full SHA for 10acda9
.readthedocs.yaml
@@ -28,4 +28,7 @@ sphinx:
28
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
29
python:
30
install:
31
- - requirements: requirements/doc.txt
+ - method: pip
32
+ path: .
33
+ extra_requirements:
34
+ - doc
setup.py
@@ -65,6 +65,11 @@ def read(fname):
65
for req in read("requirements/test.txt").split("\n")
66
if not req.startswith("#")
67
],
68
+ "doc": [
69
+ req
70
+ for req in read("requirements/doc.txt").split("\n")
71
+ if not req.startswith("#")
72
+ ],
73
},
74
package_data={
75
"numpydoc": [
0 commit comments