aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2023-09-06 15:19:38 +0100
committerGravatar GitHub <[email protected]>2023-09-06 15:19:38 +0100
commitf810ad16bb3e4e143200f19049c97e08374dbbef (patch)
tree97835d4a55c15a1e4997512122ef7e50025e2801 /pyproject.toml
parentbuild(deps-dev): bump pre-commit from 3.3.3 to 3.4.0 (#104) (diff)
Dependencies bump (#105)
* bump all dependencies to latest * update jobs extensiont to use moved kubernetes structures
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml77
1 files changed, 66 insertions, 11 deletions
diff --git a/pyproject.toml b/pyproject.toml
index e03a923..96cc63d 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -9,12 +9,12 @@ license = "MIT"
python = "3.11.*"
# See https://bot-core.pythondiscord.com/ for docs.
-pydis-core = "10.1.0"
+pydis-core = "^10.2.0"
-pydantic-settings = "2.0.3"
-loguru = "0.7.0"
-kubernetes_asyncio = "24.2.3"
-tabulate = {extras = ["widechars"], version = "0.9.0"}
+pydantic-settings = "^2.0.3"
+loguru = "^0.7.1"
+kubernetes_asyncio = "^25.11.0"
+tabulate = { extras = ["widechars"], version = "0.9.0" }
jishaku = "2.5.1"
[tool.poetry.dev-dependencies]
@@ -40,16 +40,71 @@ line-length = 100
target-version = "py311"
extend-exclude = [".cache"]
ignore = [
- "ANN002", "ANN003", "ANN101", "ANN102", "ANN204", "ANN206", "ANN401",
+ "ANN002",
+ "ANN003",
+ "ANN101",
+ "ANN102",
+ "ANN204",
+ "ANN206",
+ "ANN401",
"B904",
- "C401", "C408",
- "D100", "D104", "D105", "D107", "D203", "D212", "D214", "D215", "D301",
- "D400", "D401", "D402", "D404", "D405", "D406", "D407", "D408", "D409", "D410", "D411", "D412", "D413", "D414", "D416", "D417",
+ "C401",
+ "C408",
+ "D100",
+ "D104",
+ "D105",
+ "D107",
+ "D203",
+ "D212",
+ "D214",
+ "D215",
+ "D301",
+ "D400",
+ "D401",
+ "D402",
+ "D404",
+ "D405",
+ "D406",
+ "D407",
+ "D408",
+ "D409",
+ "D410",
+ "D411",
+ "D412",
+ "D413",
+ "D414",
+ "D416",
+ "D417",
"E731",
"RET504",
"RUF005",
"S311",
- "SIM102", "SIM108",
+ "SIM102",
+ "SIM108",
]
line-length = 100
-select = ["ANN", "B", "C4", "D", "DTZ", "E", "F", "I", "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",
+]