From 494d552f8b61c210aa56d8186f0c50d2e459da02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Sat, 11 May 2024 00:35:14 -0400 Subject: [PATCH 1/3] GEOPY-1472: add missing distributed dependency for dask --- pyproject.toml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 841d98b5b2..d909f4a198 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,7 +56,8 @@ pandas = "*" scikit-learn = ">=1.2" scipy = ">=1.8.0" -dask = {version = "*", optional = true} +dask = {version = "*", extras = ["distributed"], optional = true} +distributed = {version = "*", optional = true} fsspec = {version = ">=0.3.3", optional = true} zarr = {version = "*", optional = true} @@ -80,7 +81,12 @@ toolz = "*" twine = "*" [tool.poetry.extras] -dask = ["dask", "zarr", "fsspec"] +dask = [ + "dask", + "distributed", + "fsspec", + "zarr", +] [tool.conda-lock] platforms = ['win-64', 'osx-64', 'linux-64'] From eb6051fc364e8dfef12670a293b1706fc283f251 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Sat, 11 May 2024 00:36:18 -0400 Subject: [PATCH 2/3] GEOPY-1472: add back pymatsolver dependency was removed by mistake --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index d909f4a198..4a739e16b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -53,6 +53,7 @@ geoh5py = {version = "*", allow-prereleases = true} matplotlib = "*" numpy = ">=1.20" pandas = "*" +pymatsolver = ">=0.2" scikit-learn = ">=1.2" scipy = ">=1.8.0" From 32acb74f518a1f144c133df04d552dfb56825d48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hensgen?= Date: Sat, 11 May 2024 00:37:06 -0400 Subject: [PATCH 3/3] GEOPY-1472: bump version to rc.2 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4a739e16b7..c2ceaff997 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ [tool.poetry] name = "Mira-SimPEG" -version = "0.19.0.8rc1" +version = "0.19.0.8rc2" license = "MIT" description = "Mira Geoscience fork of SimPEG: Simulation and Parameter Estimation in Geophysics"