From 24465dac2022626f43bb1b7af92c40225cc4e18e Mon Sep 17 00:00:00 2001
From: Masayuki Igawa <masayuki.igawa@gmail.com>
Date: Fri, 8 Jan 2016 17:58:47 +0900
Subject: [PATCH] Add min ver to extra libs for graph

This commit adds min version to extra libs for graph command. When we
introduced a new graph type[1], we noticed that the matplotlib's min
version is required to use "style"[2]. However, regarding pandas, I'm
not confident with it. But an error occurred in my environment, when I
set pandas==0.10. (I suppose it's depends on OS or somethings.)

[1] Change-Id: I369717c84df0217a9a0cf17b7f9e975e580ce5a7
[2] http://matplotlib.org/users/whats_new.html#style-package-added

Change-Id: Iedb5203fb71ea522454b3f50a923fe8fc1ee1a74
---
 setup.cfg | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup.cfg b/setup.cfg
index be67da7..ed7ce8b 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -47,5 +47,5 @@ universal = 1
 
 [extras]
 graph =
-    pandas
-    matplotlib
+    pandas>=0.11
+    matplotlib>=1.4