File tree Expand file tree Collapse file tree 3 files changed +5
-8
lines changed
Expand file tree Collapse file tree 3 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ project(
2020 ' cython' ,
2121 ' cpp' ,
2222 version : run_command (
23- ' python ' ,
23+ ' python3 ' ,
2424 ' -m' ,
2525 ' setuptools_scm' ,
2626 ' --force-write-version-files' ,
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ option(
1919 'acero',
2020 type: 'feature',
2121 description: 'build the Acero Engine extension',
22- value: 'enabled ',
22+ value: 'auto ',
2323)
2424
2525option(
@@ -61,14 +61,14 @@ option(
6161 'gcs',
6262 type: 'feature',
6363 description: 'build the Google Cloud Storage (GCS) extension',
64- value: 'enabled ',
64+ value: 'auto ',
6565)
6666
6767option(
6868 'hdfs',
6969 type: 'feature',
7070 description: 'build the HDFS extension',
71- value: 'enabled ',
71+ value: 'auto ',
7272)
7373
7474# TODO: check how CMake handled the JSON feature - was not there when
@@ -78,7 +78,7 @@ option(
7878 'json',
7979 type: 'feature',
8080 description: 'Build Arrow with JSON support',
81- value: 'enabled ',
81+ value: 'auto ',
8282)
8383
8484option(
Original file line number Diff line number Diff line change @@ -125,7 +125,6 @@ if get_option('hdfs').enabled()
125125endif
126126
127127if get_option (' cuda' ).enabled()
128- error (' arrow-cuda dep not yet implemented' )
129128 cuda_dep = dependency (' arrow-cuda' )
130129 cython_modules += {' _cuda' : {' dependencies' : cuda_dep}}
131130endif
@@ -141,7 +140,6 @@ if needs_dataset
141140endif
142141
143142if get_option (' parquet' ).enabled()
144- error (' parquet dep not yet implemented' )
145143 parquet_dep = dependency (' parquet' )
146144 cython_modules += {' _parquet' : {' dependencies' : parquet_dep}}
147145
@@ -235,7 +233,6 @@ if needs_substrait
235233endif
236234
237235if get_option (' gandiva' ).enabled()
238- error (' gandiva dep not yet implemented' )
239236 gandiva_dep = dependency (' gandiva' )
240237 cython_modules += {' gandiva' : {' dependencies' : gandiva_dep}}
241238endif
You can’t perform that action at this time.
0 commit comments