8000
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 f33c490 commit 020b08fCopy full SHA for 020b08f
setupext.py
@@ -529,13 +529,13 @@ def check(self):
529
530
if major < 2:
531
raise CheckFailed(
532
- "Requires Python 2.6 or later")
533
- elif major == 2 and minor1 < 6:
+ "Requires Python 2.7 or later")
+ elif major == 2 and minor1 < 7:
534
535
- "Requires Python 2.6 or later (in the 2.x series)")
536
- elif major == 3 and minor1 < 1:
+ "Requires Python 2.7 or later (in the 2.x series)")
+ elif major == 3 and minor1 < 4:
537
538
- "Requires Python 3.1 or later (in the 3.x series)")
+ "Requires Python 3.4 or later (in the 3.x series)")
539
540
return sys.version
541
0 commit comments