diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 60 |
1 files changed, 31 insertions, 29 deletions
diff --git a/pyproject.toml b/pyproject.toml index 729d67fa..0d2890c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,38 +6,40 @@ authors = ["Python Discord <[email protected]>"] license = "MIT" [tool.poetry.dependencies] -python = "^3.9" -"discord.py" = {url = "https://github.com/Rapptz/discord.py/archive/45d498c1b76deaf3b394d17ccf56112fa691d160.zip"} -aiodns = "~=2.0" -aioredis = "~1.3" -rapidfuzz = "~=1.4" -arrow = "~=1.1.0" -beautifulsoup4 = "~=4.9" -pillow = "~=9.0" -sentry-sdk = "~=0.19" -PyYAML = "~=5.4" -async-rediscache = {extras = ["fakeredis"], version = "~=0.1.4"} -emojis = "~=0.6.0" -coloredlogs = "~=15.0" -colorama = { version = "~=0.4.3", markers = "sys_platform == 'win32'" } -lxml = "~=4.9" -emoji = "^1.6.1" +python = "3.10.*" + +# See https://bot-core.pythondiscord.com/ for docs. +bot-core = {url = "https://github.com/python-discord/bot-core/archive/refs/tags/v8.2.1.zip", extras = ["async-rediscache"]} + +aiodns = "3.0.0" +aioredis = "2.0.1" +rapidfuzz = "2.12.0" +arrow = "1.2.3" +beautifulsoup4 = "4.11.1" +pillow = "9.2.0" +sentry-sdk = "1.10.1" +PyYAML = "6.0" +emojis = "0.6.0" +coloredlogs = "15.0.1" +colorama = { version = "0.4.6", markers = "sys_platform == 'win32'" } +lxml = "4.9.1" +emoji = "2.1.0" pyjokes = "0.6.0" [tool.poetry.dev-dependencies] -flake8 = "~=3.8" -flake8-annotations = "~=2.3" -flake8-bugbear = "~=20.1" -flake8-docstrings = "~=1.5" -flake8-string-format = "~=0.3" -flake8-tidy-imports = "~=4.1" -flake8-todo = "~=0.7" -flake8-isort = "~=4.0" -pep8-naming = "~=0.11" -pip-licenses = "~=3.5" -pre-commit = "~=2.1" -python-dotenv = "~=0.15" -taskipy = "~=1.6" +flake8 = "5.0.4" +flake8-annotations = "2.9.1" +flake8-bugbear = "22.10.27" +flake8-docstrings = "1.6.0" +flake8-string-format = "0.3.0" +flake8-tidy-imports = "4.8.0" +flake8-todo = "0.7" +flake8-isort = "5.0.0" +pep8-naming = "0.13.2" +pip-licenses = "3.5.5" +pre-commit = "2.20.0" +python-dotenv = "0.21.0" +taskipy = "1.10.3" [tool.taskipy.tasks] start = "python -m bot" |