Skip to content

Commit e7a2570

Browse files
committed
Reinstate claim that library supports Python2.5
This reverts commit f8015a2.
1 parent 5e87b8a commit e7a2570

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
pass
2626

2727
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")
28+
python_25 = (major > 2 or (major == 2 and minor >= 5))
29+
if not python_25:
30+
raise RuntimeError("Python 2.5 or newer is required")
3131
python_3x = (major >= 3)
3232
if python_3x:
3333
package_name = 'phonenumbers3k'

0 commit comments

Comments
 (0)