Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bump pipfile
  • Loading branch information
lorenzo132 committed Dec 4, 2025
commit 50b7063fcadbe9263aa45ede678f3a1ce156e672
17 changes: 9 additions & 8 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,29 @@ verify_ssl = true
bandit = ">=1.7.5"
black = "==23.11.0"
pylint = "==3.0.2"
tomli = "==2.2.1" # Needed for black on Python < 3.11
tomli = "==2.2.1"

[packages]
aiohttp = "==3.13.2"
async-timeout = {version = "==5.0.1", markers = "python_version < '3.11'"} # Required by aiohttp
typing-extensions = ">=4.12.2" # Required by aiohttp
async-timeout = {version = "==5.0.1", markers = "python_version < '3.11'"}
typing-extensions = "==4.15.0"
colorama = "==0.4.6"
"discord.py" = {version = "==2.6.3", extras = ["speed"]}
emoji = "==2.8.0"
isodate = "==0.6.1"
motor = "==3.7.1"
natural = "==0.2.0" # Why is this needed?
natural = "==0.2.0"
packaging = "==23.2"
parsedatetime = "==2.6"
dnspython = ">=2.8,<3" # Required by pymongo
pymongo = ">=4.9,<5" # Required by motor
dnspython = "==2.8.0"
pymongo = "==4.15.3"
python-dateutil = "==2.8.2"
python-dotenv = "==1.0.0"
uvloop = {version = ">=0.19.0", markers = "sys_platform != 'win32'"}
uvloop = {version = "==0.22.1", markers = "sys_platform != 'win32'"}
lottie = {version = "==0.7.2", extras = ["pdf"]}
setuptools = "*" # Needed for lottie
setuptools = "==80.9.0"
requests = "==2.31.0"
orjson = "==3.11.4"

[scripts]
bot = "python bot.py"