File tree Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change
1
+ # .readthedocs.yml
2
+ # Read the Docs configuration file
3
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4
+
5
+ # Required
6
+ version : 2
7
+
8
+ # Build documentation in the docs/ directory with Sphinx
9
+ sphinx :
10
+ configuration : doc/source/conf.py
11
+
12
+ # Build documentation with MkDocs
13
+ # mkdocs:
14
+ # configuration: mkdocs.yml
15
+
16
+ # Optionally build your docs in additional formats such as PDF
17
+ formats :
18
+ - pdf
19
+
20
+ # Optionally set the version of Python and requirements required to build your docs
21
+ python :
22
+ version : 3.7
23
+ install :
24
+ - requirements : test-requirements.txt
25
+ - requirements : requirements.txt
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ mock>=1.2
22
22
pytest
23
23
pytest-cov
24
24
25
- sphinx>=1.6.2 # BSD
25
+ sphinx>=4.0.2
26
26
sphinx_rtd_theme
27
27
recommonmark
28
28
reno>=2.5.0 # Apache-2.0
Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ skipsdist = True
6
6
[testenv]
7
7
usedevelop = True
8
8
basepython = python3
9
+ install_command = pip install -U {opts} {packages}
9
10
whitelist_externals =
10
11
find
11
12
rm
12
- install_command = pip install -U {opts} {packages}
13
13
setenv =
14
14
VIRTUAL_ENV ={envdir}
15
15
LC_ALL =en_US.utf-8
You can’t perform that action at this time.
0 commit comments