From 2e73ffe7034457461b13da71b05645999dd3c0ef Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sat, 28 Sep 2024 15:29:09 +1000 Subject: [PATCH] Exclude multibuild from black and ruff --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 228c344e864..0d0a6f17084 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -97,9 +97,13 @@ config-settings = "raqm=enable raqm=vendor fribidi=vendor imagequant=disable" test-command = "cd {project} && .github/workflows/wheels-test.sh" test-extras = "tests" +[tool.black] +exclude = "wheels/multibuild" + [tool.ruff] -fix = true +exclude = [ "wheels/multibuild" ] +fix = true lint.select = [ "C4", # flake8-comprehensions "E", # pycodestyle errors