File tree Expand file tree Collapse file tree 6 files changed +41
-199
lines changed Expand file tree Collapse file tree 6 files changed +41
-199
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+
3
+ python :
4
+ install :
5
+ - requirements : ./docs/requirements.txt
6
+
7
+ build :
8
+ os : ubuntu-20.04
9
+ tools :
10
+ python : " 3.9"
11
+
12
+ sphinx :
13
+ configuration : docs/conf.py
Original file line number Diff line number Diff line change 46
46
47
47
# General information about the project.
48
48
project = "redis-py"
49
- copyright = "2016, Andy McCurdy "
49
+ copyright = "2021, Redis Inc. "
50
50
51
51
# The version info for the project you're documenting, acts as replacement for
52
52
# |version| and |release|, also used in various other places throughout the
53
53
# built documents.
54
54
#
55
55
# The short X.Y version.
56
- version = "2.10.5 "
56
+ version = "4.0.9 "
57
57
# The full version, including alpha/beta/rc tags.
58
- release = "2.10.5 "
58
+ release = "4.0.0 "
59
59
60
60
# The language for content autogenerated by Sphinx. Refer to documentation
61
61
# for a list of supported languages.
191
191
("index" ,
192
192
"redis-py.tex" ,
193
193
"redis-py Documentation" ,
194
- "Andy McCurdy " ,
194
+ "Redis Inc " ,
195
195
"manual" ),
196
196
]
197
197
240
240
"index" ,
241
241
"redis-py" ,
242
242
"redis-py Documentation" ,
243
- "Andy McCurdy " ,
243
+ "Redis Inc " ,
244
244
"redis-py" ,
245
245
"One line description of project." ,
246
246
"Miscellaneous" ,
257
257
# texinfo_show_urls = 'footnote'
258
258
259
259
epub_title = "redis-py"
260
- epub_author = "Andy McCurdy "
261
- epub_publisher = "Andy McCurdy "
262
- epub_copyright = "2011, Andy McCurdy "
260
+ epub_author = "Redis Inc "
261
+ epub_publisher = "Redis Inc "
262
+ epub_copyright = "2021, Redis Inc "
Original file line number Diff line number Diff line change @@ -22,5 +22,21 @@ Contents:
22
22
.. automodule :: redis
23
23
:members:
24
24
25
+ .. automodule :: redis.backoff
26
+ :members:
27
+
28
+ .. automodule :: redis.connection
29
+ :members:
30
+
31
+ .. automodule :: redis.commands
32
+ :members:
33
+
34
+ .. automodule :: redis.exceptions
35
+ :members:
36
+
37
+ .. automodule :: redis.lock
38
+ :members:
39
+
25
40
.. automodule :: redis.sentinel
26
41
:members:
42
+
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ sphinx < 2
2
+ docutils < 0.18
Original file line number Diff line number Diff line change @@ -127,7 +127,8 @@ exclude =
127
127
.tox,
128
128
.venv*,
129
129
build,
130
+ docs/*,
130
131
dist,
131
132
docker,
132
133
venv*,
133
- whitelist.py
134
+ whitelist.py
You can’t perform that action at this time.
0 commit comments