From 041b66a6aa95f36ce68e3eca8cd8a7e90f74ba3b Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Fri, 26 Aug 2022 01:55:41 -0700 Subject: [PATCH] Prevent building an editable wheel with setuptools<64 (#1123) This seems to be needed for passing CI now. Signed-off-by: Anders Kaseorg Signed-off-by: Anders Kaseorg --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 6fd75a0..4dc4595 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,3 +6,6 @@ include = '\.pyi?$' line_length = 120 multi_line_output = 3 include_trailing_comma = true + +[build-system] +requires = ["setuptools<64", "wheel"]