Update deps

This commit is contained in:
Nuno Campos
2023-11-04 14:13:09 +00:00
parent 591b8e23f2
commit e66a5ff576
3 changed files with 331 additions and 409 deletions
+2 -2
View File
@@ -31,11 +31,11 @@ lint_diff format_diff: PYTHON_FILES=$(shell git diff --name-only --diff-filter=d
lint lint_diff:
poetry run ruff .
poetry run black $(PYTHON_FILES) --check
poetry run ruff format $(PYTHON_FILES) --check
poetry run mypy $(PYTHON_FILES)
format format_diff:
poetry run black $(PYTHON_FILES)
poetry run ruff format $(PYTHON_FILES)
poetry run ruff --select I --fix $(PYTHON_FILES)
spell_check:
Generated
+328 -405
View File
File diff suppressed because it is too large Load Diff
+1 -2
View File
@@ -25,8 +25,7 @@ syrupy = "^4.0.2"
pytest-watch = "^4.2.0"
[tool.poetry.group.lint.dependencies]
ruff = "^0.0.249"
black = {extras = ["jupyter"], version = "^23.7.0"}
ruff = "^0.1.4"
[tool.poetry.group.typing.dependencies]
mypy = "^1.6.0"