diff options
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 58 |
1 files changed, 30 insertions, 28 deletions
diff --git a/pyproject.toml b/pyproject.toml index c4cfe0a14..c8858057d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,47 +1,47 @@ [tool.poetry] name = "bot" -version = "1.0.0" +version = "1.0.1" description = "The community bot for the Python Discord community." authors = ["Python Discord <[email protected]>"] license = "MIT" [tool.poetry.dependencies] -python = "3.11.*" +python = "3.12.*" # See https://bot-core.pythondiscord.com/ for docs. -pydis_core = { version = "10.7.0", extras = ["async-rediscache"] } +pydis_core = { version = "11.6.0", extras = ["all"] } -aiohttp = "3.9.3" +aiohttp = "3.11.13" arrow = "1.3.0" beautifulsoup4 = "4.12.3" colorama = { version = "0.4.6", markers = "sys_platform == 'win32'" } coloredlogs = "15.0.1" -deepdiff = "6.7.1" -emoji = "2.10.1" +deepdiff = "7.0.1" +emoji = "2.14.1" feedparser = "6.0.11" -lxml = "5.1.0" -markdownify = "0.11.6" -more-itertools = "10.2.0" +lxml = "5.3.1" +markdownify = "0.14.1" +pydantic = "2.10.6" +pydantic-settings = "2.8.1" python-dateutil = "2.9.0.post0" python-frontmatter = "1.1.0" -rapidfuzz = "3.6.2" -regex = "2023.12.25" -sentry-sdk = "1.43.0" -tldextract = "5.1.2" -pydantic = "2.5.2" -pydantic-settings = "2.2.1" +rapidfuzz = "3.12.1" +regex = "2024.11.6" +sentry-sdk = "2.22.0" +tenacity = "9.0.0" +tldextract = "5.1.3" -[tool.poetry.dev-dependencies] -coverage = "7.4.4" -httpx = "0.27.0" -pre-commit = "3.6.2" -pip-licenses = "4.3.4" -pytest = "8.1.1" -pytest-cov = "4.1.0" -pytest-subtests = "0.12.1" -pytest-xdist = "3.5.0" -ruff = "0.3.4" -taskipy = "1.12.2" +[tool.poetry.group.dev.dependencies] +coverage = "7.6.12" +httpx = "0.28.1" +pip-licenses = "5.0.0" +pre-commit = "4.1.0" +pytest = "8.3.4" +pytest-cov = "6.0.0" +pytest-subtests = "0.14.1" +pytest-xdist = "3.6.1" +ruff = "0.9.9" +taskipy = "1.14.1" [build-system] @@ -67,14 +67,16 @@ source_pkgs = ["bot"] source = ["tests"] [tool.ruff] -target-version = "py311" +target-version = "py312" extend-exclude = [".cache"] line-length = 120 +output-format = "concise" +unsafe-fixes = true [tool.ruff.lint] select = ["ANN", "B", "C4", "D", "DTZ", "E", "F", "I", "ISC", "INT", "N", "PGH", "PIE", "Q", "RET", "RSE", "RUF", "S", "SIM", "T20", "TID", "UP", "W"] ignore = [ - "ANN002", "ANN003", "ANN101", "ANN102", "ANN204", "ANN206", "ANN401", + "ANN002", "ANN003", "ANN204", "ANN206", "ANN401", "B904", "C401", "C408", "D100", "D104", "D105", "D107", "D203", "D212", "D214", "D215", "D301", |