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.
2 parents 6286efa + 197d794 commit 6cf6063Copy full SHA for 6cf6063
lib/matplotlib/__init__.py
@@ -126,9 +126,9 @@ def compare_versions(a, b):
126
else:
127
return False
128
129
-if not compare_versions(six.__version__, '1.5'):
+if not compare_versions(six.__version__, '1.3'):
130
raise ImportError(
131
- 'six 1.5 or later is required; you have %s' % (
+ 'six 1.3 or later is required; you have %s' % (
132
six.__version__))
133
134
try:
setupext.py
@@ -1090,7 +1090,7 @@ def get_extension(self):
1090
1091
class Six(SetupPackage):
1092
name = "six"
1093
- min_version = "1.5"
+ min_version = "1.3"
1094
1095
def check(self):
1096
0 commit comments