From c6bd99a30c9831e467cfea83da8b3333c9ad2944 Mon Sep 17 00:00:00 2001 From: Sergey Pokhodenko Date: Fri, 10 Apr 2020 14:12:56 +0300 Subject: [PATCH 1/2] Disable build of sdc.parquet_cpp --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 1489b2d68..4e905547d 100644 --- a/setup.py +++ b/setup.py @@ -162,8 +162,9 @@ def readme(): _ext_mods = [ext_hdist, ext_chiframes, ext_set, ext_str, ext_dt, ext_io, ext_transport_seq] -if _has_pyarrow: - _ext_mods.append(ext_parquet) +# Support of Parquet is disabled because HPAT pipeline is not work now +# if _has_pyarrow: +# _ext_mods.append(ext_parquet) class style(Command): @@ -318,7 +319,6 @@ def run(self): 'pyarrow==0.15.1', 'numba==0.48' ], - extras_require={'Parquet': ["pyarrow"], }, cmdclass=sdc_build_commands, ext_modules=_ext_mods, entry_points={ From 2c821bd67c890acc550870c48e06226953c13831 Mon Sep 17 00:00:00 2001 From: Sergey Pokhodenko Date: Fri, 10 Apr 2020 14:44:32 +0300 Subject: [PATCH 2/2] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4e905547d..82adefe92 100644 --- a/setup.py +++ b/setup.py @@ -162,7 +162,7 @@ def readme(): _ext_mods = [ext_hdist, ext_chiframes, ext_set, ext_str, ext_dt, ext_io, ext_transport_seq] -# Support of Parquet is disabled because HPAT pipeline is not work now +# Support of Parquet is disabled because HPAT pipeline does not work now # if _has_pyarrow: # _ext_mods.append(ext_parquet)