From 4fac92cfc3392f24754cb881b4d27f53157334f4 Mon Sep 17 00:00:00 2001 From: harupy Date: Wed, 23 Oct 2019 23:02:39 +0900 Subject: [PATCH 1/5] Update scipy to the current latest version --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 60a673505..ce91a0f20 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ jupyter notebook pandas==0.23.0 statsmodels==0.9.0 -scipy==1.1.0 +scipy==1.3.1 patsy==0.5.1 numpy==1.16.0 plotly-geo From 277cddbe6a1de6f6b9805afced5fcd6243ad67cd Mon Sep 17 00:00:00 2001 From: harupy Date: Thu, 31 Oct 2019 01:05:19 +0900 Subject: [PATCH 2/5] Trigger CI From ff068ec6233949dc6dd6437cd629e0c102714e12 Mon Sep 17 00:00:00 2001 From: harupy Date: Thu, 31 Oct 2019 02:05:28 +0900 Subject: [PATCH 3/5] Update statsmodels version --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index ce91a0f20..cf6bf3d0e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,7 +3,7 @@ jupytext==1.1.1 jupyter notebook pandas==0.23.0 -statsmodels==0.9.0 +statsmodels==0.10.1 scipy==1.3.1 patsy==0.5.1 numpy==1.16.0 From b092dddd6f962ffc0dbfd6a9b2d87c7f746c7045 Mon Sep 17 00:00:00 2001 From: harupy Date: Thu, 31 Oct 2019 19:42:47 +0900 Subject: [PATCH 4/5] check scipy version --- python/images.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/images.md b/python/images.md index dd503120c..e6874e87c 100644 --- a/python/images.md +++ b/python/images.md @@ -150,6 +150,8 @@ import plotly.graph_objects as go import numpy as np np.random.seed(1) +import scipy +print(scipy.__version__) from scipy.signal import savgol_filter # Simulate spectroscopy data From 9cefbf282fb99babbd0700972fbca1208014d0c7 Mon Sep 17 00:00:00 2001 From: harupy Date: Thu, 31 Oct 2019 20:19:24 +0900 Subject: [PATCH 5/5] Fix --- python/images.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/images.md b/python/images.md index e6874e87c..dd503120c 100644 --- a/python/images.md +++ b/python/images.md @@ -150,8 +150,6 @@ import plotly.graph_objects as go import numpy as np np.random.seed(1) -import scipy -print(scipy.__version__) from scipy.signal import savgol_filter # Simulate spectroscopy data