From 8d7669548b1099182dbea4a2c612e38d02b19285 Mon Sep 17 00:00:00 2001 From: doctorpangloss <@hiddenswitch.com> Date: Mon, 19 May 2025 21:20:23 -0700 Subject: [PATCH] Always include setuptools --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6c571e77d..76e17cead 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -99,7 +99,9 @@ dependencies = [ "av", "typer", "ijson", - "scikit-learn>=1.4.1" + "scikit-learn>=1.4.1", + # everything that is a torch extension will need setuptools, so just include it + "setuptools", ] [build-system]