From d81a8fe705dfe088972ec89228291be733b55022 Mon Sep 17 00:00:00 2001 From: grouazel Date: Thu, 14 Dec 2023 11:33:54 +0100 Subject: [PATCH] try to workaround the tensorflow build issue --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 480b8e0..87b90ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,11 +18,15 @@ dependencies = [ "scipy", "netCDF4", "importlib_resources", - "tensorflow", 'tqdm' ] + dynamic = ["version"] +[options.extras_require] +tensorflow = tensorflow + + [build-system] requires = ["setuptools>=64.0", "setuptools-scm"] build-backend = "setuptools.build_meta"