Skip to content

Commit

Permalink
BLD: make minimum cycler version 0.10.0
Browse files Browse the repository at this point in the history
closes #6325
  • Loading branch information
tacaswell committed Apr 27, 2016
1 parent 35e2781 commit e92eb88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions INSTALL
Expand Up @@ -212,13 +212,13 @@ Required Dependencies
Used to manipulate time-zone aware datetimes. http://pypi.python.org/pypi/pytz

:term:`FreeType` 2.3 or later
Library for reading true type font files. If using pip, easy_install or
Library for reading true type font files. If using pip, easy_install or
installing from source, the installer will attempt to locate FreeType in
expected locations. If it cannot, try installing `pkg-config
expected locations. If it cannot, try installing `pkg-config
<http://matplotlib.org/users/installing.html#optional-dependencies>`__,
a tool used to find required non-python libraries.

`cycler <http://matplotlib.org/cycler/>`__ 0.9 or later
`cycler <http://matplotlib.org/cycler/>`__ 0.10.0 or later
Composable cycle class used for constructing style-cycles

`functools32`
Expand Down
3 changes: 1 addition & 2 deletions setupext.py
Expand Up @@ -1380,11 +1380,10 @@ def check(self):
"cycler was not found. "
"pip/easy_install may attempt to install it "
"after matplotlib.")

return "using cycler version %s" % cycler.__version__

def get_install_requires(self):
return ['cycler>=0.9']
return ['cycler>=0.10']


class Dateutil(SetupPackage):
Expand Down

0 comments on commit e92eb88

Please sign in to comment.