From d20675565f8a02568ea2d43f34871681248599d3 Mon Sep 17 00:00:00 2001 From: GALI PREM SAGAR Date: Thu, 13 May 2021 21:49:21 -0500 Subject: [PATCH] Fix cython flag to use c++17 (#8243) This PR changes cython to compile with c++17 Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - Keith Kraus (https://github.com/kkraus14) URL: https://github.com/rapidsai/cudf/pull/8243 --- python/cudf/setup.py | 2 +- python/cudf_kafka/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/cudf/setup.py b/python/cudf/setup.py index b8c7dc5868f..54921396b6f 100644 --- a/python/cudf/setup.py +++ b/python/cudf/setup.py @@ -192,7 +192,7 @@ def run(self): ), libraries=["cudart", "cudf"] + pa.get_libraries() + ["arrow_cuda"], language="c++", - extra_compile_args=["-std=c++14"], + extra_compile_args=["-std=c++17"], ) ] diff --git a/python/cudf_kafka/setup.py b/python/cudf_kafka/setup.py index f7523dda503..f16b7b42e4e 100644 --- a/python/cudf_kafka/setup.py +++ b/python/cudf_kafka/setup.py @@ -72,7 +72,7 @@ library_dirs=([get_python_lib(), os.path.join(os.sys.prefix, "lib")]), libraries=["cudf", "cudf_kafka"], language="c++", - extra_compile_args=["-std=c++14"], + extra_compile_args=["-std=c++17"], ) ]