We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4218048 commit 220d690Copy full SHA for 220d690
test_python/setup.py
@@ -78,10 +78,10 @@ def cpp_flag(compiler):
78
"""Return the -std=c++14 compiler flag and errors when the flag is
79
no available.
80
"""
81
- if has_flag(compiler, '-std=c++14'):
82
- return '-std=c++14'
+ if has_flag(compiler, '-std=c++17'):
+ return '-std=c++17'
83
else:
84
- raise RuntimeError('C++14 support is required by xtensor!')
+ raise RuntimeError('C++17 support is required by xtensor!')
85
86
87
class BuildExt(build_ext):
0 commit comments