Skip to content

Commit 67448aa

Browse files
committed
Add missing core dependencies
1 parent 4278c0a commit 67448aa

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

python/pyarrow/meson.build

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,18 @@ arrow_python_lib = library(
9393
install_dir: py.get_install_dir() / 'pyarrow',
9494
)
9595

96+
arrow_compute_dep = dependency('arrow-compute')
97+
arrow_csv_dep = dependency('arrow-csv')
98+
arrow_fs_dep = dependency('arrow-filesystem')
99+
arrow_json_dep = dependency('arrow-json')
100+
96101
cython_modules = {
97102
'lib': {},
98-
'_compute': {},
99-
'_csv': {},
103+
'_compute': {'dependencies': [arrow_compute_dep]},
104+
'_csv': {'dependencies': [arrow_csv_dep]},
100105
'_feather': {},
101-
'_fs': {},
102-
'_json': {},
106+
'_fs': {'dependencies': [arrow_fs_dep]},
107+
'_json': {'dependencies': [arrow_json_dep]},
103108
'_pyarrow_cpp_tests': {},
104109
}
105110

0 commit comments

Comments
 (0)