File tree Expand file tree Collapse file tree 3 files changed +31
-5
lines changed Expand file tree Collapse file tree 3 files changed +31
-5
lines changed Original file line number Diff line number Diff line change
1
+ # Read the Docs configuration file
2
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3
+ version : 2
4
+
5
+ sphinx :
6
+ configuration : docs/conf.py
7
+
8
+ build :
9
+ image : latest
10
+
11
+ python :
12
+ version : 3.8
13
+ install :
14
+ - requirements : docs-requirements.txt
Original file line number Diff line number Diff line change
1
+ sphinx~=2.4
2
+ sphinx-rtd-theme~=0.4
3
+ sphinx-autodoc-typehints~=1.10.2
4
+
5
+ # Required by ext packages
6
+ opentracing~=2.2.0
7
+ Deprecated>=1.2.6
8
+ thrift>=0.10.0
9
+ pymongo~=3.1
10
+ flask~=1.0
Original file line number Diff line number Diff line change @@ -197,14 +197,16 @@ commands =
197
197
[testenv:docs]
198
198
deps =
199
199
-c dev-requirements.txt
200
+ -c docs-requirements.txt
200
201
sphinx
201
202
sphinx-rtd-theme
202
203
sphinx-autodoc-typehints
203
- opentracing~=2.2.0
204
- Deprecated>=1.2.6
205
- thrift>=0.10.0
206
- pymongo ~= 3.1
207
- flask~=1.0
204
+ # Required by ext packages
205
+ opentracing
206
+ Deprecated
207
+ thrift
208
+ pymongo
209
+ flask
208
210
209
211
changedir = docs
210
212
You can’t perform that action at this time.
0 commit comments