From c998d619b113bb4d0b58bd24119461cadb59fefd Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Wed, 13 Jul 2016 15:24:36 -0400 Subject: [PATCH] MAINT: Bump numpy and pandas. --- etc/requirements.txt | 7 ++++--- setup.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/etc/requirements.txt b/etc/requirements.txt index c34f46b3..8b55fd6b 100644 --- a/etc/requirements.txt +++ b/etc/requirements.txt @@ -8,13 +8,13 @@ Logbook==0.12.5 # Scientific Libraries -pytz==2015.4 -numpy==1.9.2 +pytz==2016.4 +numpy==1.11.1 # scipy and pandas are required for statsmodels, # statsmodels in turn is required for some pandas packages scipy==0.15.1 -pandas==0.16.1 +pandas==0.18.1 pandas-datareader==0.2.1 # Needed for parts of pandas.stats patsy==0.4.0 @@ -38,6 +38,7 @@ contextlib2==0.4.0 # networkx requires decorator decorator==4.0.0 + # Graph algorithms used by zipline.pipeline networkx==1.9.1 diff --git a/setup.py b/setup.py index 776c8c69..ab307ff7 100644 --- a/setup.py +++ b/setup.py @@ -148,7 +148,7 @@ def _filter_requirements(lines_iter, filter_names=None, REQ_UPPER_BOUNDS = { 'bcolz': '<1', - 'pandas': '<0.18', + 'pandas': '<0.19', }