We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e87b8a commit e7a2570Copy full SHA for e7a2570
python/setup.py
@@ -25,9 +25,9 @@
25
pass
26
27
major, minor = sys.version_info[:2]
28
-python_26 = (major > 2 or (major == 2 and minor >= 6))
29
-if not python_26:
30
- raise RuntimeError("Python 2.6 or newer is required")
+python_25 = (major > 2 or (major == 2 and minor >= 5))
+if not python_25:
+ raise RuntimeError("Python 2.5 or newer is required")
31
python_3x = (major >= 3)
32
if python_3x:
33
package_name = 'phonenumbers3k'
0 commit comments