aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorGravatar wookie184 <[email protected]>2024-06-19 16:13:04 +0100
committerGravatar GitHub <[email protected]>2024-06-19 16:13:04 +0100
commit5873ad7d9fc5a4fa803b1411db1804c5998aaab5 (patch)
tree92b10d64f6259113d7d8df9162693490e4a6f407 /pyproject.toml
parentFix site startup command used in docker-compose.yml (#238) (diff)
parentIgnore RUF029, due to false positives and it not being that important (diff)
Merge pull request #235 from python-discord/dependabot/pip/ruff-0.4.8
Bump ruff from 0.3.4 to 0.4.8
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 8b9e4e01..bdd9d744 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -47,7 +47,7 @@ pytest-cov = "5.0.0"
pytest-xdist = "3.6.1"
[tool.poetry.group.lint.dependencies]
-ruff = "0.3.4"
+ruff = "0.4.8"
pre-commit = "3.7.1"
[tool.poetry.group.doc.dependencies]
@@ -102,7 +102,7 @@ ignore = [
"PLR",
"PT009",
"RET504",
- "RUF005",
+ "RUF005", "RUF029",
"S311", "S404",
"SIM102", "SIM108",
"TRY003",