Closed
Description
Master requires cycler 0.10.0, not 0.9.0+ (as specified in setupext.py).
For 0.9.0, importing matplotlib fails:
In [1]: import matplotlib
<<< SNIP >>>
807 for prop in cycler_inst.keys:
808 norm_prop = _prop_aliases.get(prop, prop)
--> 809 cycler_inst.change_key(prop, norm_prop)
810
811 return cycler_inst
AttributeError: 'Cycler' object has no attribute 'change_key'
change_key
was added to 0.10.0 according to the cycler release notes.