From f78bae4fa2c82e104be8937ae5eff8f0939c416e Mon Sep 17 00:00:00 2001 From: Alec Ostrander Date: Fri, 16 Aug 2024 17:07:25 -0500 Subject: [PATCH] actually fix requirements format --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c716eb5..4dabb10 100644 --- a/setup.py +++ b/setup.py @@ -16,8 +16,8 @@ # What packages are required for this module to be executed? REQUIRED = [ - 'numpy>1, <2' - 'pandas>1, <2', + 'numpy>=1.0, <=2.0', + 'pandas>=1.0, <=2.0', 'appdirs>1', 'fastparquet>0.5', ]