From 3ddd88bbb472aa3d10c5b253cad7285685ac04bc Mon Sep 17 00:00:00 2001 From: Filipe Fernandes Date: Thu, 11 Apr 2024 11:13:36 +0200 Subject: [PATCH] fix deprecation warnings --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index af8b5817..be14e45f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ requires = [ ] [tool.ruff] -select = [ +lint.select = [ "A", # flake8-builtins "B", # flake8-bugbear "C4", # flake8-comprehensions @@ -24,11 +24,11 @@ exclude = [ "compliance_checker/cf/cf.py", ] -ignore = [ +lint.ignore = [ "E501", ] -[tool.ruff.per-file-ignores] +[tool.ruff.lint.per-file-ignores] "docs/source/conf.py" = [ "E402", "A001",