From 9166d939021fdd3018791b849b02ef914ba722ea Mon Sep 17 00:00:00 2001 From: ajvogel Date: Mon, 5 Jul 2021 09:22:19 +0200 Subject: [PATCH] Remove restriction on pandas version Removing the restriction on pandas version since the Panel fixes should make it no longer necessary. Various people have reported arctic working latest version of Pandas. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a31553f9..6f8f063a 100644 --- a/setup.py +++ b/setup.py @@ -77,7 +77,7 @@ def run_tests(self): "enum-compat", "futures; python_version == '2.7'", "mockextras", - "pandas<=1.0.3", + "pandas", "pymongo>=3.6.0", "python-dateutil", "pytz",