From 6d9917cf89709e4c9809a30d1dc340faeaf7c777 Mon Sep 17 00:00:00 2001 From: Kernc Date: Fri, 2 Aug 2019 02:11:56 +0200 Subject: [PATCH] MNT: pin pandas below 0.25 to avoid bug https://github.com/kernc/backtesting.py/issues/14 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f96eb82..1a65d3e 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ if __name__ == '__main__': install_requires=[ 'typing ; python_version < "3.5"', 'numpy', - 'pandas >= 0.21.0', + 'pandas >= 0.21.0, < 0.25.0', 'bokeh >= 0.12.15', ], extras_require={