From 968b9753a5682020b2c2efb4ef859a618fa08c60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Wed, 21 Dec 2022 16:46:53 +0100 Subject: [PATCH] BLD: explicitly require wheel as a buildtime dependency --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index b08b94a..cc30734 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,6 +3,8 @@ requires = [ "setuptools>=61.2", "Cython>=0.29.22,<3.0", "oldest-supported-numpy", + # see https://github.com/numpy/numpy/pull/18389 + "wheel>=0.36.2", ] [project]