From a5d8714c2699c5755b201f717577c7fb31389e06 Mon Sep 17 00:00:00 2001 From: Tri Dao Date: Sun, 2 Jul 2023 16:41:47 -0700 Subject: [PATCH] [Build] Remove pyproject.toml I haven't found an easy way to add torch as a build dependency in pyproject.toml. If we add torch in pyproject.toml, for some setup it would download a different version of Pytorch before building. If we don't add torch, lots of users report they get error when installing. --- pyproject.toml | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index f67608a..0000000 --- a/pyproject.toml +++ /dev/null @@ -1,3 +0,0 @@ -[build-system] -requires = ["ninja", "packaging", "setuptools", "wheel"] -build-backend = "setuptools.build_meta"