diff --git a/pyproject.toml b/pyproject.toml index f405e1f..a25338d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,3 +44,11 @@ include-package-data = true [tool.setuptools.packages.find] where = ["src"] namespaces = false + +[tool.ruff.lint] +extend-select = [ + "UP", # pyupgrade +] +ignore = [ + "UP027", # deprecated pyupgrade rule +]