From 1145fe64a54d5d1f813b96bf2923aff954267554 Mon Sep 17 00:00:00 2001 From: deronnax Date: Thu, 26 Mar 2015 15:53:19 +0100 Subject: [PATCH] matching the version only at the begining of lines --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 67ca2eed46..f98f5281ca 100755 --- a/setup.py +++ b/setup.py @@ -30,8 +30,8 @@ version = '' with open('requests/__init__.py', 'r') as fd: - version = re.search(r'__version__\s*=\s*[\'"]([^\'"]*)[\'"]', - fd.read()).group(1) + version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', + fd.read(), re.MULTILINE).group(1) if not version: raise RuntimeError('Cannot find version information')