X Tutup
Skip to content
Merged
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
8 changes: 5 additions & 3 deletions setupext.py
Original file line number Diff line number Diff line change
Expand Up @@ -1226,7 +1226,7 @@ def check(self):
except ImportError:
return (
"pytz was not found. "
"pip will attempt to install it "
"pip/easy_install may attempt to install it "
"after matplotlib.")

return "using pytz version %s" % pytz.__version__
Expand All @@ -1244,7 +1244,7 @@ def check(self):
except ImportError:
return (
"cycler was not found. "
"pip will attempt to install it "
"pip/easy_install may attempt to install it "
"after matplotlib.")

return "using cycler version %s" % cycler.__version__
Expand Down Expand Up @@ -1295,7 +1295,9 @@ def check(self):
except ImportError:
return (
"functools32 was not found. It is required for for"
"python versions prior to 3.2")
"python versions prior to 3.2 "
"pip/easy_install may attempt to install it "
"after matplotlib.")

return "using functools32"
else:
Expand Down
X Tutup