Skip to content

Commit 2c44644

Browse files
committed
Enable compression in pyarrow
1 parent 07eff87 commit 2c44644

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

graalpython/lib-graalpython/patches/pyarrow/pyarrow-12.0.0.patch

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
diff --git a/pyarrow_build_backend.py b/pyarrow_build_backend.py
22
new file mode 100644
3-
index 0000000..9046e34
3+
index 0000000..525bb34
44
--- /dev/null
55
+++ b/pyarrow_build_backend.py
6-
@@ -0,0 +1,89 @@
6+
@@ -0,0 +1,95 @@
77
+import os
88
+import re
99
+import sys
@@ -65,6 +65,12 @@ index 0000000..9046e34
6565
+ '-DARROW_PARQUET=ON',
6666
+ '-DPARQUET_REQUIRE_ENCRYPTION=ON',
6767
+ '-DARROW_GANDIVA=ON',
68+
+ '-DARROW_WITH_BZ2=ON',
69+
+ '-DARROW_WITH_ZLIB=ON',
70+
+ '-DARROW_WITH_ZSTD=ON',
71+
+ '-DARROW_WITH_LZ4=ON',
72+
+ '-DARROW_WITH_SNAPPY=ON',
73+
+ '-DARROW_WITH_BROTLI=ON',
6874
+ ])
6975
+ subprocess.check_call([
7076
+ 'cmake', '--build', str(build_dir), '--parallel',

0 commit comments

Comments
 (0)