From c1d117c2d070bbdd0c94be67213bd16ed9717618 Mon Sep 17 00:00:00 2001 From: Kirthi Shankar Sivamani Date: Thu, 25 May 2023 19:12:00 +0000 Subject: [PATCH 1/3] Remove ninja from pyproject.toml Signed-off-by: Kirthi Shankar Sivamani --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ada608d..bc886d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["ninja", "packaging", "setuptools", "torch", "wheel"] -build-backend = "setuptools.build_meta" \ No newline at end of file +requires = ["packaging", "setuptools", "torch", "wheel"] +build-backend = "setuptools.build_meta" From 852bc40b8c9a5ea0dbe203a3b1bb5b9b1ed07d6b Mon Sep 17 00:00:00 2001 From: Kirthi Shankar Sivamani Date: Thu, 25 May 2023 19:12:22 +0000 Subject: [PATCH 2/3] Remove torch from pyproject.toml Signed-off-by: Kirthi Shankar Sivamani --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bc886d6..3823473 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["packaging", "setuptools", "torch", "wheel"] +requires = ["packaging", "setuptools", "wheel"] build-backend = "setuptools.build_meta" From 6d45d0bd6c9f833204d8a6438c4b2d5438729026 Mon Sep 17 00:00:00 2001 From: Kirthi Shankar Sivamani Date: Thu, 25 May 2023 21:22:50 +0000 Subject: [PATCH 3/3] Re-add ninja Signed-off-by: Kirthi Shankar Sivamani --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3823473..f67608a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["packaging", "setuptools", "wheel"] +requires = ["ninja", "packaging", "setuptools", "wheel"] build-backend = "setuptools.build_meta"