X Tutup
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions INSTALL
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
X Tutup