Skip to content
Snippets Groups Projects

Update to Ubuntu24.04

Merged Bartek Wrona requested to merge bw_ubuntu24.04_update into master
1 file
+ 3
1
Compare changes
  • Side-by-side
  • Inline
+ 15
11
@@ -22,24 +22,24 @@ packages = [
[tool.poetry.dependencies]
python = "^3.10"
requests = "2.27.1"
python = "^3.12"
requests = "2.32.3"
python-dateutil = "2.8.2"
abstractcp = "0.9.9"
loguru = "0.7.2"
typing-extensions="4.12.2"
beekeepy = "0.0.1.dev338+58e0bf7"
wax = "0.3.10.dev558+3a636d1"
beekeepy = "0.0.1.dev351+7c750ab"
wax = "0.3.10.dev597+751bb00"
[tool.poetry.group.dev.dependencies]
black = "22.8.0"
local-tools = { path = "tests/local-tools", develop = true }
pre-commit = "2.20.0"
mypy = "1.4.1"
ruff = "0.0.277"
pytest = "7.1.2"
pytest-xdist = "2.5.0"
mypy = "1.11.2"
ruff = "0.6.5"
pytest = "8.3.5"
pytest-xdist = "3.6.1"
[tool.black]
@@ -48,7 +48,10 @@ line-length = 120
[tool.ruff]
line-length = 120
select = [# https://beta.ruff.rs/docs/rules/
[tool.ruff.lint]
# https://beta.ruff.rs/docs/rules/
select = [
"F",
"E",
"W",
@@ -95,7 +98,7 @@ ignore = [
"D100", # missing docstring in public module
]
[tool.ruff.per-file-ignores]
[tool.ruff.lint.per-file-ignores]
"tests/**" = [ # no need for docstrings in tests
"D100", # missing docstring in public module
"D101", # missing docstring in public class
@@ -108,7 +111,7 @@ ignore = [
]
[tool.ruff.isort]
[tool.ruff.lint.isort]
known-first-party = ["helpy", "schemas", "wax"]
required-imports = ["from __future__ import annotations"]
@@ -121,4 +124,5 @@ testpaths = ["tests"]
[tool.mypy]
strict = true
disallow_untyped_decorators = false
allow_any_generics = true
plugins = "pydantic.mypy"
Loading