From 35c0f15bcc6de02d1e086a4925abe100895d5b11 Mon Sep 17 00:00:00 2001 From: Kevin Dean Date: Fri, 23 Aug 2024 17:13:00 -0500 Subject: [PATCH 1/2] Update pyproject.toml This was a mistake on my behalf. I added this dependency thinking it was a built-in... --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8e08c07e7..85750a535 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,8 @@ dependencies = [ 'fsspec==2022.8.2; sys_platform != "darwin"', 'fsspec==2022.5.0; sys_platform == "darwin"', 'h5py==3.7.0', - 'requests==2.28.1' + 'requests==2.28.1', + 'psutil' ] [project.scripts] From 9a548eb35dc75eb2d9857d2ab72e62da30fa808a Mon Sep 17 00:00:00 2001 From: Annie Wang Date: Mon, 26 Aug 2024 10:02:24 -0700 Subject: [PATCH 2/2] add psutil version number --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 85750a535..0afa320c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,7 +40,7 @@ dependencies = [ 'fsspec==2022.5.0; sys_platform == "darwin"', 'h5py==3.7.0', 'requests==2.28.1', - 'psutil' + 'psutil==6.0.0' ] [project.scripts]