From da77e887869b5139648450c9be9734d6fa744383 Mon Sep 17 00:00:00 2001 From: Richard Frank Date: Wed, 18 May 2016 14:27:07 -0400 Subject: [PATCH] BLD: Cap the version of pandas until we fix compatibility issues (#1210) --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8d0e62b1..3ec52cfa 100644 --- a/setup.py +++ b/setup.py @@ -143,7 +143,8 @@ def _filter_requirements(lines_iter, filter_names=None, REQ_UPPER_BOUNDS = { - 'bcolz': '<1' + 'bcolz': '<1', + 'pandas': '<0.18', }