From 95bb0985e7a364828322499dda55875c1334982b Mon Sep 17 00:00:00 2001 From: mbsantiago Date: Sun, 10 Nov 2024 19:13:11 +0000 Subject: [PATCH] Add ruff rule to help migrating to numpy 2.0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c2b3ce2..a9399ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,7 +65,7 @@ docstring-code-format = true docstring-code-line-length = 79 [tool.ruff.lint] -select = ["E4", "E7", "E9", "F", "B", "Q", "I"] +select = ["E4", "E7", "E9", "F", "B", "Q", "I", "NPY201"] [tool.ruff.lint.pydocstyle] convention = "numpy"