shorter and faster version extraction from __init__.py

This commit is contained in:
deronnax
2015-03-25 18:21:34 +01:00
parent e95e173b8c
commit ce234d53a5
+2 -6
View File
@@ -30,12 +30,8 @@ requires = []
version = ''
with open('requests/__init__.py', 'r') as fd:
reg = re.compile(r'__version__\s*=\s*[\'"]([^\'"]*)[\'"]')
for line in fd:
m = reg.match(line)
if m:
version = m.group(1)
break
version = re.search(r'__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read()).group(1)
if not version:
raise RuntimeError('Cannot find version information')