From 17a5b97682bb4b4028fbe15f259f8bcd54ad9569 Mon Sep 17 00:00:00 2001 From: Adarsh Murthy Date: Tue, 25 Apr 2017 10:06:28 -0400 Subject: [PATCH 1/3] Remove numpy, scipy and statsmodels from requirements. --- requirements.txt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index e511b69..635494b 100755 --- a/requirements.txt +++ b/requirements.txt @@ -1,10 +1,7 @@ cycler==0.10.0 -numpy==1.11.2 pandas==0.19.1 patsy==0.4.1 pyparsing==2.1.10 python-dateutil==2.6.0 pytz==2016.7 -scipy==0.18.1 -statsmodels==0.6.1 -xlrd==1.0.0 +gxlrd==1.0.0 -- GitLab From 7630db676781cba9af6f789172fed42aaf3a43bd Mon Sep 17 00:00:00 2001 From: Adarsh Murthy Date: Tue, 25 Apr 2017 10:24:44 -0400 Subject: [PATCH 2/3] Modify requirements. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 635494b..53ca6bb 100755 --- a/requirements.txt +++ b/requirements.txt @@ -4,4 +4,4 @@ patsy==0.4.1 pyparsing==2.1.10 python-dateutil==2.6.0 pytz==2016.7 -gxlrd==1.0.0 +xlrd==1.0.0 -- GitLab From 5b05fe40b65f0b232f1e1f2fcbb1644485ebb7b0 Mon Sep 17 00:00:00 2001 From: Adarsh Murthy Date: Tue, 25 Apr 2017 11:36:32 -0400 Subject: [PATCH 3/3] Remove unused import statement. --- bpfin/lib/other.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bpfin/lib/other.py b/bpfin/lib/other.py index 415d57e..f1d6a9f 100644 --- a/bpfin/lib/other.py +++ b/bpfin/lib/other.py @@ -1,7 +1,6 @@ import bpfin.lib.date import bpfin.lib.math -import statsmodels.api as sm import datetime import calendar # from dateutil.parser import * -- GitLab