From da0d423c737eeaff9c4463ea895282ae51aca41d Mon Sep 17 00:00:00 2001 From: Yotam Michael <7930821+yotmic@users.noreply.github.com> Date: Wed, 23 Apr 2025 09:40:44 +0300 Subject: [PATCH] Create pyproject.toml pytorch3d depends on `torch`, but doesn't declare it as a build dependency. If `pytorch3d` is a first-party package, consider adding `torch` to its `build-system.requires`. Otherwise, `uv pip install torch` into the environment and re-run with `--no-build-isolation`. --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 000000000..e0714967e --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools", "wheel", "torch"] +build-backend = "setuptools.build_meta"