diff options
author | 2024-03-04 16:24:08 +0000 | |
---|---|---|
committer | 2024-03-18 10:32:17 +0000 | |
commit | e29bcfb0fbf87c2b497091477dcbd3336e3afa7c (patch) | |
tree | f30d80b04aa621ad7c8aefe83bf71ae1260045f2 /pyproject.toml | |
parent | Split fakeredis optional dep out from async-rediscache (diff) |
Add support for Python 3.12
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index 7e661666..4e08fe62 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,11 +23,11 @@ repository = "https://github.com/python-discord/bot-core" keywords = ["bot", "discord", "discord.py"] [tool.poetry.dependencies] -python = "3.10.* || 3.11.*" +python = "3.10.* || 3.11.* || 3.12.*" "discord.py" = "~=2.3.2" async-rediscache = { version = "1.0.0rc2", optional = true } -fakeredis = { version = "~=2.0", extras = ["lua"], optional = true } +fakeredis = { version = "~=2.0", extras = ["lua"], optional = true, python = "<3.12" } pydantic = "~=2.6" statsd = "~=4.0" aiodns = "~=3.1" |