Skip to content

Commit 6cf6063

Browse files
committed
Merge pull request matplotlib#2879 from tacaswell/six_version
BLD : adjust min six version to 1.3
2 parents 6286efa + 197d794 commit 6cf6063

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/matplotlib/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ def compare_versions(a, b):
126126
else:
127127
return False
128128

129-
if not compare_versions(six.__version__, '1.5'):
129+
if not compare_versions(six.__version__, '1.3'):
130130
raise ImportError(
131-
'six 1.5 or later is required; you have %s' % (
131+
'six 1.3 or later is required; you have %s' % (
132132
six.__version__))
133133

134134
try:

setupext.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1090,7 +1090,7 @@ def get_extension(self):
10901090

10911091
class Six(SetupPackage):
10921092
name = "six"
1093-
min_version = "1.5"
1093+
min_version = "1.3"
10941094

10951095
def check(self):
10961096
try:

0 commit comments

Comments
 (0)