aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml23
1 files changed, 10 insertions, 13 deletions
diff --git a/pyproject.toml b/pyproject.toml
index d3d55dbb..95dcb65c 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pydis_core"
-version = "10.1.0"
+version = "10.2.0"
description = "PyDis core provides core functionality and utility to the bots of the Python Discord community."
authors = ["Python Discord <[email protected]>"]
license = "MIT"
@@ -25,7 +25,7 @@ keywords = ["bot", "discord", "discord.py"]
[tool.poetry.dependencies]
python = "3.10.* || 3.11.*"
-"discord.py" = "2.3.1"
+"discord.py" = "2.3.2"
async-rediscache = { version = "1.0.0rc2", extras = ["fakeredis"], optional = true }
pydantic = ">=1.7.4,<3.0.0"
statsd = "4.0.1"
@@ -45,7 +45,7 @@ pytest-xdist = "3.3.1"
[tool.poetry.group.lint.dependencies]
isort = "5.12.0"
-ruff = "0.0.275"
+ruff = "0.0.286"
pre-commit = "3.3.3"
typing-extensions = "4.6.3"
@@ -77,15 +77,6 @@ branch = true
source_pkgs = ["pydis_core"]
source = ["tests"]
-[tool.isort]
-multi_line_output = 6
-order_by_type = false
-case_sensitive = true
-combine_as_imports = true
-line_length = 120
-atomic = true
-known_first_party = ["dev", "pydis_core", "docs"]
-
[tool.ruff]
target-version = "py310"
extend-exclude = [".cache"]
@@ -102,7 +93,13 @@ ignore = [
"SIM102", "SIM108",
]
line-length = 120
-select = ["ANN", "B", "C4", "D", "DTZ", "E", "F", "ISC", "INT", "N", "PGH", "PIE", "Q", "RET", "RSE", "RUF", "S", "SIM", "T20", "TID", "UP", "W"]
+select = ["ANN", "B", "C4", "D", "DTZ", "E", "F", "I", "ISC", "INT", "N", "PGH", "PIE", "Q", "RET", "RSE", "RUF", "S", "SIM", "T20", "TID", "UP", "W"]
+
+[tool.ruff.isort]
+order-by-type = false
+case-sensitive = true
+combine-as-imports = true
+known-first-party = ["dev", "pydis_core", "docs"]
[tool.ruff.per-file-ignores]
"tests/*" = ["ANN", "D"]