From e7c7a8890dc40fbef6258fd979b9143bec0e8c88 Mon Sep 17 00:00:00 2001 From: "Noah D. Brenowitz" Date: Tue, 20 Aug 2024 22:52:21 -0700 Subject: [PATCH] make pyvista optional Resolves #5 --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 24d0f1b..7b3528f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,6 @@ dependencies = [ "einops>=0.7.0", "netCDF4>=1.6.5", "numpy>=1.23.3", - "pyvista>=0.43.2", "torch>=2.0.1", ] @@ -35,6 +34,9 @@ dependencies = [ [project.optional-dependencies] +viz = [ + "pyvista>=0.43.2", +] test = [ "pytest>=6.2.4", "black>=21.5b2",