File tree Expand file tree Collapse file tree 3 files changed +6
-14
lines changed Expand file tree Collapse file tree 3 files changed +6
-14
lines changed Original file line number Diff line number Diff line change 1
1
:orphan:
2
2
3
- Master
3
+ 2.8.0
4
4
======
5
5
- TwitchIO
6
6
- Additions
@@ -31,13 +31,6 @@ Master
31
31
- ``Optional[T] `` / ``T | None ``
32
32
- ``Annotated[T, converter] `` (accessible through the ``typing_extensions `` module on older python versions)
33
33
34
- - ext.commands
35
- - Additions
36
- - Added support for the following typing constructs in command signatures:
37
- - ``Union[A, B] `` / ``A | B ``
38
- - ``Optional[T] `` / ``T | None ``
39
- - ``Annotated[T, converter] `` (accessible through the ``typing_extensions `` module on older python versions)
40
-
41
34
- Docs
42
35
- Added walkthrough for ext.commands
43
36
Original file line number Diff line number Diff line change 26
26
27
27
on_rtd = os .environ .get ("READTHEDOCS" ) == "True"
28
28
project = "TwitchIO"
29
- copyright = "2022 , TwitchIO"
30
- author = "TwitchIO "
29
+ copyright = "2023 , TwitchIO"
30
+ author = "PythonistaGuild "
31
31
32
32
# The full version, including alpha/beta/rc tags
33
33
release = ''
46
46
"sphinxcontrib.asyncio" ,
47
47
"sphinx.ext.intersphinx" ,
48
48
"attributetable" ,
49
- "sphinxext.opengraph"
49
+ "sphinxext.opengraph" ,
50
+ "sphinx.ext.napoleon"
50
51
]
51
52
52
53
# OpenGraph Meta Tags
93
94
html_js_files = ["js/custom.js" ]
94
95
95
96
96
- extensions .append ("sphinx.ext.napoleon" )
97
-
98
97
napoleon_use_rtype = False
99
98
napoleon_google_docstring = False
100
99
napoleon_numpy_docstring = True
Original file line number Diff line number Diff line change 28
28
__author__ = "TwitchIO, PythonistaGuild"
29
29
__license__ = "MIT"
30
30
__copyright__ = "Copyright 2017-2022 (c) TwitchIO"
31
- __version__ = "2.7 .0"
31
+ __version__ = "2.8 .0"
32
32
33
33
from .client import Client
34
34
from .user import *
You can’t perform that action at this time.
0 commit comments