Skip to content

Commit 966d255

Browse files
committed
Clarify that easy_install may be used
1 parent 9ab39e4 commit 966d255

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

setupext.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1226,7 +1226,7 @@ def check(self):
12261226
except ImportError:
12271227
return (
12281228
"pytz was not found. "
1229-
"pip will attempt to install it "
1229+
"pip/easy_install may attempt to install it "
12301230
"after matplotlib.")
12311231

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

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

13001302
return "using functools32"
13011303
else:

0 commit comments

Comments
 (0)