From a3419dfa2b5e389ff9c8136c44abac8bbc8c975f Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Mon, 11 Sep 2023 10:16:01 +0800 Subject: [PATCH] Ensure wheel is in build dependencies. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a05d190..2bf1c73 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["setuptools>=60", "setuptools_scm[toml]>=7.0"] +requires = ["setuptools>=60", "setuptools_scm[toml]>=7.0", "wheel"] build-backend = "setuptools.build_meta"