From 6296aae064b53734044ef53bf9471f4c82139d4f Mon Sep 17 00:00:00 2001 From: geruh Date: Sun, 11 Jan 2026 16:01:35 -0800 Subject: [PATCH 1/2] chore: Remove unused [tool.black] config --- mkdocs/docs/contributing.md | 2 +- pyproject.toml | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/mkdocs/docs/contributing.md b/mkdocs/docs/contributing.md index 4f13570904..9278d33a82 100644 --- a/mkdocs/docs/contributing.md +++ b/mkdocs/docs/contributing.md @@ -118,7 +118,7 @@ make lint In addition to manually running `make lint`, you can install the pre-commit hooks in your local repo with `prek install`. By doing this, linting is run automatically every time you make a commit. -You can bump the integrations to the latest version using `prek auto-update`. This will check if there is a newer version of `{black,mypy,isort,...}` and update the yaml. +You can bump the integrations to the latest version using `prek auto-update`. This will check if there is a newer version of `{ruff,mypy,...}` and update the yaml. ## Cleaning diff --git a/pyproject.toml b/pyproject.toml index a92914bc58..5a22ecece4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -168,10 +168,6 @@ filterwarnings = [ "ignore:subprocess.*is still running:ResourceWarning", ] -[tool.black] -line-length = 130 -target-version = ['py38'] - [tool.pycln] all = true From 32ab9ea1f0d3364ba93a8c58e8c831218296bfc3 Mon Sep 17 00:00:00 2001 From: geruh Date: Sun, 11 Jan 2026 16:12:57 -0800 Subject: [PATCH 2/2] Also remove pycln --- pyproject.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5a22ecece4..f2849c6a2d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -168,9 +168,6 @@ filterwarnings = [ "ignore:subprocess.*is still running:ResourceWarning", ] -[tool.pycln] -all = true - [tool.mypy] mypy_path = "python" no_implicit_optional = true