Thanks to visit codestin.com Credit goes to github.com
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 d316904 commit 197d794Copy full SHA for 197d794
2 files changed
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