From 3c21bc3949b46afb6376b71be7083b846d7b479e Mon Sep 17 00:00:00 2001 From: Doug Branton Date: Fri, 6 Sep 2024 11:28:14 -0700 Subject: [PATCH 1/2] allow newer versions of nested-pandas --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e60c60b..0bfba79 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ classifiers = [ dynamic = ["version"] requires-python = ">=3.9" dependencies = [ - 'nested-pandas==0.2.1', + 'nested-pandas>=0.2.1', 'numpy', 'dask>=2024.3.0', 'dask[distributed]>=2024.3.0', From 60aa1204348a52c4252c088d0df241cfa4ea9d48 Mon Sep 17 00:00:00 2001 From: Doug Branton Date: Fri, 6 Sep 2024 12:09:56 -0700 Subject: [PATCH 2/2] pin to minor version Co-authored-by: Konstantin Malanchev --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f969df1..f010207 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ classifiers = [ dynamic = ["version"] requires-python = ">=3.9" dependencies = [ - 'nested-pandas>=0.2.1', + 'nested-pandas>=0.2.1,<0.3', 'numpy', 'dask>=2024.3.0', 'dask[distributed]>=2024.3.0',