From 3e21c0a5c05a6f365caf3986691921fdb079539d Mon Sep 17 00:00:00 2001 From: Frances Hartwell Date: Fri, 28 Apr 2023 10:17:20 -0400 Subject: [PATCH 1/2] unpin pandas --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index d547d699..410472ed 100644 --- a/setup.py +++ b/setup.py @@ -15,12 +15,12 @@ 'packaging>=20,<22', "numpy>=1.20.0,<2;python_version<'3.10'", "numpy>=1.23.3,<2;python_version>='3.10'", - "pandas>=1.1.3,<2;python_version<'3.10'", - "pandas>=1.3.4,<2;python_version>='3.10'", + "pandas>=1.1.3;python_version<'3.10'", + "pandas>=1.3.4;python_version>='3.10'", "scikit-learn>=1.1.3,<2;python_version>='3.10'", "torch>=1.8.0;python_version<'3.10'", "torch>=1.11.0;python_version>='3.10'", - 'rdt>=1.3.0,<2.0', + 'rdt @ git+https://github.com/sdv-dev/RDT.git@issue-633-remove-pandas-upper-bound', ] setup_requires = [ From 246143db3561cf31fa201009039c41e263b8d6c0 Mon Sep 17 00:00:00 2001 From: Frances Hartwell Date: Tue, 2 May 2023 14:30:56 -0400 Subject: [PATCH 2/2] fix rdt requirement --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 410472ed..20301c88 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ "scikit-learn>=1.1.3,<2;python_version>='3.10'", "torch>=1.8.0;python_version<'3.10'", "torch>=1.11.0;python_version>='3.10'", - 'rdt @ git+https://github.com/sdv-dev/RDT.git@issue-633-remove-pandas-upper-bound', + 'rdt>=1.3.0,<2.0', ] setup_requires = [