mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 03:08:55 -05:00
Bump dependencies (this switches to HTML 5 writer in Sphinx & changes config.json dir on Mac) (#3982)
* Bump deps * use html5 writer * appdirs<1.4.4 compatibility fix * more bumping * Revert "appdirs<1.4.4 compatibility fix" (Jack did a dumb) This reverts commit cc5299d9878a1af292db6d73e616b808cb471e83. * And another ~~one~~ bump! I'm gonna blame Neuro for being nice and contributing to aiohttp-json-rpc. * just one more and pls merge this Kowlin * Kowlin, pls merge
This commit is contained in:
parent
1d80fe9aec
commit
3aa6f51dfb
@ -108,9 +108,6 @@ rst_prolog += f"\n.. |DPY_VERSION| replace:: {dpy_version}"
|
|||||||
#
|
#
|
||||||
html_theme = "sphinx_rtd_theme"
|
html_theme = "sphinx_rtd_theme"
|
||||||
|
|
||||||
# This will be needed until sphinx_rtd_theme supports the html5 writer
|
|
||||||
html4_writer = True
|
|
||||||
|
|
||||||
# Theme options are theme-specific and customize the look and feel of a theme
|
# Theme options are theme-specific and customize the look and feel of a theme
|
||||||
# further. For a list of options available for each theme, see the
|
# further. For a list of options available for each theme, see the
|
||||||
# documentation.
|
# documentation.
|
||||||
|
|||||||
74
setup.cfg
74
setup.cfg
@ -33,81 +33,83 @@ packages = find_namespace:
|
|||||||
python_requires = >=3.8.1
|
python_requires = >=3.8.1
|
||||||
install_requires =
|
install_requires =
|
||||||
aiohttp==3.6.2
|
aiohttp==3.6.2
|
||||||
aiohttp-json-rpc==0.12.3
|
aiohttp-json-rpc==0.13.1
|
||||||
aiosqlite==0.11.0
|
aiosqlite==0.15.0
|
||||||
appdirs==1.4.3
|
appdirs==1.4.4
|
||||||
apsw-wheels==3.30.1.post3
|
apsw-wheels==3.30.1.post3
|
||||||
async-timeout==3.0.1
|
async-timeout==3.0.1
|
||||||
attrs==19.3.0
|
attrs==19.3.0
|
||||||
Babel==2.8.0
|
Babel==2.8.0
|
||||||
chardet==3.0.4
|
chardet==3.0.4
|
||||||
click==7.1.1
|
click==7.1.2
|
||||||
colorama==0.4.3
|
colorama==0.4.3
|
||||||
contextlib2==0.5.5
|
contextlib2==0.6.0.post1
|
||||||
discord.py==1.3.4
|
discord.py==1.3.4
|
||||||
distro==1.5.0; sys_platform == "linux"
|
distro==1.5.0; sys_platform == "linux"
|
||||||
fuzzywuzzy==0.18.0
|
fuzzywuzzy==0.18.0
|
||||||
idna==2.9
|
idna==2.10
|
||||||
multidict==4.7.5
|
multidict==4.7.6
|
||||||
python-Levenshtein-wheels==0.13.1
|
python-Levenshtein-wheels==0.13.1
|
||||||
pytz==2019.3
|
pytz==2020.1
|
||||||
PyYAML==5.3.1
|
PyYAML==5.3.1
|
||||||
Red-Lavalink==0.5.1
|
Red-Lavalink==0.5.1
|
||||||
schema==0.7.1
|
schema==0.7.2
|
||||||
tqdm==4.45.0
|
tqdm==4.48.0
|
||||||
|
typing-extensions==3.7.4.2
|
||||||
uvloop==0.14.0; sys_platform != "win32" and platform_python_implementation == "CPython"
|
uvloop==0.14.0; sys_platform != "win32" and platform_python_implementation == "CPython"
|
||||||
websockets==8.1
|
websockets==8.1
|
||||||
yarl==1.4.2
|
yarl==1.5.0
|
||||||
|
|
||||||
[options.extras_require]
|
[options.extras_require]
|
||||||
docs =
|
docs =
|
||||||
alabaster==0.7.12
|
alabaster==0.7.12
|
||||||
certifi==2019.11.28
|
certifi==2020.6.20
|
||||||
docutils==0.16
|
docutils==0.16
|
||||||
imagesize==1.2.0
|
imagesize==1.2.0
|
||||||
Jinja2==2.11.1
|
Jinja2==2.11.2
|
||||||
MarkupSafe==1.1.1
|
MarkupSafe==1.1.1
|
||||||
packaging==20.3
|
packaging==20.4
|
||||||
Pygments==2.6.1
|
Pygments==2.6.1
|
||||||
pyparsing==2.4.6
|
pyparsing==2.4.7
|
||||||
requests==2.23.0
|
requests==2.24.0
|
||||||
six==1.14.0
|
six==1.15.0
|
||||||
snowballstemmer==2.0.0
|
snowballstemmer==2.0.0
|
||||||
Sphinx==2.4.4
|
Sphinx==3.1.2
|
||||||
sphinx-rtd-theme==0.4.3
|
sphinx-rtd-theme==0.5.0
|
||||||
sphinxcontrib-applehelp==1.0.2
|
sphinxcontrib-applehelp==1.0.2
|
||||||
sphinxcontrib-devhelp==1.0.2
|
sphinxcontrib-devhelp==1.0.2
|
||||||
sphinxcontrib-htmlhelp==1.0.3
|
sphinxcontrib-htmlhelp==1.0.3
|
||||||
sphinxcontrib-jsmath==1.0.1
|
sphinxcontrib-jsmath==1.0.1
|
||||||
sphinxcontrib-qthelp==1.0.3
|
sphinxcontrib-qthelp==1.0.3
|
||||||
sphinxcontrib-serializinghtml==1.1.4
|
sphinxcontrib-serializinghtml==1.1.4
|
||||||
sphinxcontrib-trio==1.1.1
|
sphinxcontrib-trio==1.1.2
|
||||||
urllib3==1.25.8
|
urllib3==1.25.10
|
||||||
postgres =
|
postgres =
|
||||||
asyncpg==0.20.1
|
asyncpg==0.20.1
|
||||||
style =
|
style =
|
||||||
black==19.10b0
|
black==19.10b0
|
||||||
pathspec==0.7.0
|
pathspec==0.8.0
|
||||||
regex==2020.4.4
|
regex==2020.7.14
|
||||||
toml==0.10.0
|
toml==0.10.1
|
||||||
typed-ast==1.4.1
|
typed-ast==1.4.1
|
||||||
test =
|
test =
|
||||||
astroid==2.3.3
|
astroid==2.4.2
|
||||||
isort==4.3.21
|
isort==4.3.21
|
||||||
lazy-object-proxy==1.4.3
|
lazy-object-proxy==1.4.3
|
||||||
mccabe==0.6.1
|
mccabe==0.6.1
|
||||||
more-itertools==8.2.0
|
more-itertools==8.4.0
|
||||||
packaging==20.3
|
packaging==20.4
|
||||||
pluggy==0.13.1
|
pluggy==0.13.1
|
||||||
py==1.8.1
|
py==1.9.0
|
||||||
pylint==2.4.4
|
pylint==2.5.3
|
||||||
pyparsing==2.4.6
|
pyparsing==2.4.7
|
||||||
pytest==5.4.1
|
pytest==5.4.3
|
||||||
pytest-asyncio==0.10.0
|
pytest-asyncio==0.14.0
|
||||||
pytest-mock==3.0.0
|
pytest-mock==3.2.0
|
||||||
six==1.14.0
|
six==1.15.0
|
||||||
wcwidth==0.1.9
|
toml==0.10.1
|
||||||
wrapt==1.11.2
|
wcwidth==0.2.5
|
||||||
|
wrapt==1.12.1
|
||||||
|
|
||||||
[options.entry_points]
|
[options.entry_points]
|
||||||
console_scripts =
|
console_scripts =
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user