diff options
| author | 2024-04-10 22:02:49 +0100 | |
|---|---|---|
| committer | 2024-04-10 22:02:49 +0100 | |
| commit | eb615cab63227215f5089435f53f5bb6e6fc1d83 (patch) | |
| tree | ee48f993a66e11662e75a6f02920b2c90dc26e96 /pyproject.toml | |
| parent | Merge pull request #172 from python-discord/dependabot/pip/sentry-sdk-1.44.1 (diff) | |
| parent | Change Poetry to install `--no-root` in Docker (diff) | |
Merge pull request #174 from python-discord/jb3/python-3.12
Bump to Python 3.12
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/pyproject.toml b/pyproject.toml index add4e4b..4fea822 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,24 +5,28 @@ description = "King Arthur is a helper for the Python Discord DevOps team." authors = ["Joe Banks <[email protected]>", "Chris Lovering <[email protected]>"] license = "MIT" +packages = [ + {include = "arthur"} +] + [tool.poetry.dependencies] -python = "3.11.*" +python = "3.12.*" # See https://bot-core.pythondiscord.com/ for docs. -pydis-core = "10.7.0" +pydis-core = "11.1.0" -pydantic = "2.6.1" -pydantic-settings = "2.1.0" +pydantic = "2.6.4" +pydantic-settings = "2.2.1" loguru = "0.7.2" kubernetes_asyncio = "29.0.0" tabulate = { extras = ["widechars"], version = "0.9.0" } jishaku = "2.5.2" -sentry-sdk = "1.44.1" +sentry-sdk = "1.45.0" humanize = "^4.9.0" [tool.poetry.dev-dependencies] -pre-commit = "3.6.1" -ruff = "0.2.1" +pre-commit = "3.7.0" +ruff = "0.3.5" taskipy = "1.12.2" [tool.taskipy.tasks] |