From edf42c4f135e4f38b3273be6c399a7d9e044d696 Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Wed, 27 Aug 2025 14:24:45 -0400 Subject: [PATCH] Remove unused runtime dependencies setuptools and ninja are not used at runtime, and already exist in the build-system list of dependencies (and are overridden by some installs in the build workflow) --- pyproject.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5831fe66..bf7c5fd5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,11 +18,9 @@ classifiers = [ dependencies = [ "torch", "triton", - "ninja", "einops", "transformers", "packaging", - "setuptools>=61.0.0", ] [project.urls] Repository = "https://github.com/state-spaces/mamba"