8000 Correct supported versions in setupext · matplotlib/matplotlib@020b08f · GitHub
[go: up one dir, main page]

Skip to content

Commit 020b08f

Browse files
committed
Correct supported versions in setupext
1 parent f33c490 commit 020b08f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

setupext.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -529,13 +529,13 @@ def check(self):
529529

530530
if major < 2:
531531
raise CheckFailed(
532-
"Requires Python 2.6 or later")
533-
elif major == 2 and minor1 < 6:
532+
"Requires Python 2.7 or later")
533+
elif major == 2 and minor1 < 7:
534534
raise CheckFailed(
535-
"Requires Python 2.6 or later (in the 2.x series)")
536-
elif major == 3 and minor1 < 1:
535+
"Requires Python 2.7 or later (in the 2.x series)")
536+
elif major == 3 and minor1 < 4:
537537
raise CheckFailed(
538-
"Requires Python 3.1 or later (in the 3.x series)")
538+
"Requires Python 3.4 or later (in the 3.x series)")
539539

540540
return sys.version
541541

0 commit comments

Comments
 (0)
0