From fac45f20ffc9584d3f8ac50d98b880d55036fbbc Mon Sep 17 00:00:00 2001 From: Gavin John Date: Fri, 22 Nov 2024 10:48:17 -0800 Subject: [PATCH] pyproject.toml: Move relevant pyproject entries into lint subsection According to `ruff check .`: warning: The top-level linter settings are deprecated in favour of their counterparts in the `lint` section. Please update the following options in `pyproject.toml`: - 'ignore' -> 'lint.ignore' - 'select' -> 'lint.select' --- ci/pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/pyproject.toml b/ci/pyproject.toml index 38c6ef4d0..18ebfae5a 100644 --- a/ci/pyproject.toml +++ b/ci/pyproject.toml @@ -2,8 +2,8 @@ target-version = "py311" line-length = 88 -select = ["E", "F", "I"] -ignore = ["E501"] +lint.select = ["E", "F", "I"] +lint.ignore = ["E501"] [tool.black] line-length = 88