summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLisandro Dalcin <dalcinl@gmail.com>2017-10-15 14:16:26 +0300
committerLisandro Dalcin <dalcinl@gmail.com>2017-10-15 14:17:10 +0300
commit83205e5511222ef2107d1b4a52c07419a92e8ff2 (patch)
tree752b6623e9e257c6b3ff70001c1caf7e8a3c771a
parent23e8254fb8c83a5a70e692c9f553acbc37a45f57 (diff)
downloadcython-83205e5511222ef2107d1b4a52c07419a92e8ff2.tar.gz
Fix bad use of GCC version regex in runtest.py
-rwxr-xr-xruntests.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/runtests.py b/runtests.py
index f27383dad..c1966cc7d 100755
--- a/runtests.py
+++ b/runtests.py
@@ -253,7 +253,6 @@ def update_cpp11_extension(ext):
update cpp11 extensions that will run on versions of gcc >4.8
"""
gcc_version = get_gcc_version(ext.language)
- compiler_version = gcc_version.group(1)
if gcc_version is not None:
compiler_version = gcc_version.group(1)
if float(compiler_version) > 4.8: