topmodel
topmodel copied to clipboard
matplotlib and pandas specs in requirements.txt are incongruent
Pandas 0.19.1 will throw an exception if the matplotlib version is 1.4.0
see: pandas/tools/plotting.py
137 try:
138 import matplotlib
--> 139 return (matplotlib.version >= LooseVersion('1.5') or 140 matplotlib.version[0] == '0') 141 except ImportError: