raulcd commented on code in PR #13113:
URL: https://github.com/apache/arrow/pull/13113#discussion_r871427584
##########
python/examples/minimal_build/build_conda.sh:
##########
@@ -79,6 +79,7 @@ cmake -GNinja \
-DCMAKE_BUILD_TYPE=DEBUG \
-DCMAKE_INSTALL_PREFIX=$ARROW_HOME \
-DCMAKE_INSTALL_LIBDIR=lib \
+ -DARROW_DATASET=ON \
Review Comment:
I have removed Dataset, Parquet and Flight. The builds are now failing
because there seems to be a test which is not being marked to be skipped when
parquet is not available:
```
def test_parquet_invalid_version(tempdir):
table = pa.table({'a': [1, 2, 3]})
with pytest.raises(ValueError, match="Unsupported Parquet format
version"):
> _write_table(table, tempdir / 'test_version.parquet',
version="2.2")
E NameError: name '_write_table' is not defined
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]