Commit 30d8fe77 authored by Stefan Behnel's avatar Stefan Behnel

Disable failing OpenMP tests in Py3.4 on MSVC, probably an old compiler...

Disable failing OpenMP tests in Py3.4 on MSVC, probably an old compiler version on appveyor (and I don't feel like fixing it before Py3.4 goes EoL).
Closes #2489.
parent b3f927cb
......@@ -248,6 +248,10 @@ def update_openmp_extension(ext):
ext.openmp = True
language = ext.language
if sys.platform == 'win32' and sys.version_info[:2] == (3,4):
# OpenMP tests fail in appveyor in Py3.4 -> just ignore them, EoL of Py3.4 is early 2019...
return EXCLUDE_EXT
if language == 'cpp':
flags = OPENMP_CPP_COMPILER_FLAGS
else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment