diff options
author | 2024-05-14 14:08:23 +0100 | |
---|---|---|
committer | 2024-05-14 14:08:23 +0100 | |
commit | 29234ba1a4ec0a347349e3ec5867a54b3570ba12 (patch) | |
tree | ad7d4344c4eec4749efa419fa3bd4d49b3e157fc | |
parent | Bump version to 11.1.0 (diff) |
Use python version specifier that dependabot can understand (#212)
-rw-r--r-- | poetry.lock | 9 | ||||
-rw-r--r-- | pyproject.toml | 2 |
2 files changed, 4 insertions, 7 deletions
diff --git a/poetry.lock b/poetry.lock index 2602dfcb..3bc46239 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. [[package]] name = "aiodns" @@ -484,9 +484,6 @@ files = [ {file = "coverage-7.4.4.tar.gz", hash = "sha256:c901df83d097649e257e803be22592aedfd5182f07b3cc87d640bbb9afd50f49"}, ] -[package.dependencies] -tomli = {version = "*", optional = true, markers = "python_full_version <= \"3.11.0a6\" and extra == \"toml\""} - [package.extras] toml = ["tomli"] @@ -2039,5 +2036,5 @@ fakeredis = ["fakeredis"] [metadata] lock-version = "2.0" -python-versions = "3.11.* || 3.12.*" -content-hash = "1899384d2275884e0af4582aad540a44a6c2be1f76a9d777107b6718cfb8ab12" +python-versions = "^3.11" +content-hash = "5f1431a3149a622a59461cc5b367ea21bffc450bfe06add5a44815e9b2bbb6b7" diff --git a/pyproject.toml b/pyproject.toml index 6a9b11ea..408ae185 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ repository = "https://github.com/python-discord/bot-core" keywords = ["bot", "discord", "discord.py"] [tool.poetry.dependencies] -python = "3.11.* || 3.12.*" +python = "^3.11" "discord.py" = "~=2.3.2" async-rediscache = { version = "1.0.0rc2", optional = true } |