From 0bc3970292fbc030ab7eb5df1334abbf8ddbb563 Mon Sep 17 00:00:00 2001 From: Reuben Feinman Date: Mon, 24 Mar 2025 10:26:04 -0400 Subject: [PATCH] update setuptools build requirement to fix build error (#91) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f7e8652..6116740 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] requires = [ - "setuptools>=61.0", + "setuptools>=62.3.0,<75.9", "torch>=2.3.1", ] build-backend = "setuptools.build_meta"