We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04617e9 commit 73cc574Copy full SHA for 73cc574
setupext.py
@@ -1170,12 +1170,17 @@ def check(self):
1170
import six
1171
except ImportError:
1172
return (
1173
- "six was not found.")
+ "six was not found."
1174
+ "pip will attempt to install it "
1175
+ "after matplotlib.")
1176
1177
if not is_min_version(six.__version__, self.min_version):
- raise CheckFailed(
- "Requires six %s or later. Found %s." %
1178
- (self.min_version, six.__version__))
+ return ("The installed version of six is {inst_ver} but "
1179
+ "a the minimum required version is {min_ver}. "
1180
+ "pip/easy install will attempt to install a "
1181
+ "newer version."
1182
+ ).format(min_ver=self.min_version,
1183
+ inst_ver=six.__version__)
1184
1185
return "using six version %s" % six.__version__
1186
0 commit comments