File tree 4 files changed +39
-3
lines changed
4 files changed +39
-3
lines changed Original file line number Diff line number Diff line change
1
+ # Read the Docs configuration file for Sphinx projects
2
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3
+
4
+ # Required
5
+ version : 2
6
+
7
+ # Set the OS, Python version and other tools you might need
8
+ build :
9
+ os : ubuntu-22.04
10
+ tools :
11
+ python : " 3.12"
12
+ # You can also specify other tool versions:
13
+ # nodejs: "20"
14
+ # rust: "1.70"
15
+ # golang: "1.20"
16
+
17
+ # Optional but recommended, declare the Python requirements required
18
+ # to build your documentation
19
+ # See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
20
+ python :
21
+ install :
22
+ - requirements : docs/requirements.txt
23
+
24
+ # Build documentation in the "docs/" directory with Sphinx
25
+ sphinx :
26
+ configuration : docs/source/conf.py
27
+ # You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs
28
+ # builder: "dirhtml"
29
+ # Fail on all warnings to avoid broken references
30
+ # fail_on_warning: true
31
+
32
+ # Optionally build your docs in additional formats such as PDF and ePub
33
+ # formats:
34
+ # - pdf
35
+ # - epub
Original file line number Diff line number Diff line change
1
+ numpydoc
2
+ nbsphinx
3
+ sphinx-rtd-theme
Original file line number Diff line number Diff line change 193
193
# -- Options for intersphinx extension ---------------------------------------
194
194
195
195
# Example configuration for intersphinx: refer to the Python standard library.
196
- intersphinx_mapping = {'https://docs.python.org/' : None }
196
+ intersphinx_mapping = {'python' : ( ' https://docs.python.org/', None ) }
197
197
198
198
# -- Options for todo extension ----------------------------------------------
199
199
Original file line number Diff line number Diff line change @@ -2,8 +2,6 @@ altair>=3.0
2
2
coveralls == 3.2.0
3
3
matplotlib >= 3.5
4
4
numpy >= 1.14
5
- numpydoc
6
- nbsphinx
7
5
pytest >= 4.6
8
6
pytest-cov
9
7
scipy >= 1.0
You can’t perform that action at this time.
0 commit comments