Skip to content

Commit

Permalink
Install package on rtd (#472)
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrodmillman committed Jul 2, 2023
1 parent 3076945 commit 10acda9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,7 @@ sphinx:
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
python:
install:
- requirements: requirements/doc.txt
- method: pip
path: .
extra_requirements:
- doc
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ def read(fname):
for req in read("requirements/test.txt").split("\n")
if not req.startswith("#")
],
"doc": [
req
for req in read("requirements/doc.txt").split("\n")
if not req.startswith("#")
],
},
package_data={
"numpydoc": [
Expand Down

0 comments on commit 10acda9

Please sign in to comment.