From 0cc031f5fa01ff3cfe78fbdb024aa7a464327d0f Mon Sep 17 00:00:00 2001 From: Sasha Baranov Date: Tue, 25 Oct 2016 16:20:24 +0300 Subject: [PATCH] Require pandas >= 0.18.0 (#34) According to pandas documentation: `RangeIndex is a sub-class of Int64Index added in version 0.18.0` RangeIndex is used in root_pandas. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3dc004a..6485c5b 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ license='MIT', install_requires=[ 'numpy', - 'pandas', + 'pandas>=0.18.0', 'root_numpy', ], packages=['root_pandas'],