Skip to content

Commit

Permalink
Bump dependencies (#6225)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackenmen committed Aug 12, 2023
1 parent e8c89d4 commit 742339a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion redbot/core/core_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -3221,7 +3221,7 @@ async def _set_status_custom(

status = ctx.bot.guilds[0].me.status if len(ctx.bot.guilds) > 0 else discord.Status.online
if text:
activity = discord.Activity(name=text, state=text, type=discord.ActivityType.custom)
activity = discord.CustomActivity(name=text)
else:
activity = None
await ctx.bot.change_presence(status=status, activity=activity)
Expand Down
18 changes: 9 additions & 9 deletions requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ aiohttp-json-rpc==0.13.3
# via -r base.in
aiosignal==1.3.1
# via aiohttp
apsw==3.42.0.0
apsw==3.42.0.1
# via -r base.in
async-timeout==4.0.2
async-timeout==4.0.3
# via aiohttp
attrs==23.1.0
# via aiohttp
Expand All @@ -28,7 +28,7 @@ click==8.1.6
# via -r base.in
contextlib2==21.6.0
# via schema
discord-py==2.3.1
discord-py==2.3.2
# via
# -r base.in
# red-lavalink
Expand All @@ -40,7 +40,7 @@ idna==3.4
# via yarl
importlib-metadata==6.8.0
# via markdown
markdown==3.4.3
markdown==3.4.4
# via -r base.in
markdown-it-py==3.0.0
# via rich
Expand All @@ -50,35 +50,35 @@ multidict==6.0.4
# via
# aiohttp
# yarl
orjson==3.9.2
orjson==3.9.4
# via -r base.in
packaging==23.1
# via -r base.in
platformdirs==3.9.1
platformdirs==3.10.0
# via -r base.in
psutil==5.9.5
# via -r base.in
pycares==4.3.0
# via aiodns
pycparser==2.21
# via cffi
pygments==2.15.1
pygments==2.16.1
# via rich
python-dateutil==2.8.2
# via -r base.in
pytz==2023.3
# via babel
pyyaml==6.0.1
# via -r base.in
rapidfuzz==3.1.2
rapidfuzz==3.2.0
# via -r base.in
red-commons==1.0.0
# via
# -r base.in
# red-lavalink
red-lavalink==0.11.0
# via -r base.in
rich==13.4.2
rich==13.5.2
# via -r base.in
schema==0.7.5
# via -r base.in
Expand Down
2 changes: 1 addition & 1 deletion requirements/extra-style.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ black==23.7.0
# via -r extra-style.in
mypy-extensions==1.0.0
# via black
pathspec==0.11.1
pathspec==0.11.2
# via black
tomli==2.0.1
# via black
4 changes: 2 additions & 2 deletions requirements/extra-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ mccabe==0.7.0
# via pylint
pluggy==1.2.0
# via pytest
pylint==2.17.4
pylint==2.17.5
# via -r extra-test.in
pytest==7.4.0
# via
Expand All @@ -29,7 +29,7 @@ tomli==2.0.1
# via
# pylint
# pytest
tomlkit==0.11.8
tomlkit==0.12.1
# via pylint
wrapt==1.15.0
# via astroid

0 comments on commit 742339a

Please sign in to comment.