We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4278c0a commit 67448aaCopy full SHA for 67448aa
python/pyarrow/meson.build
@@ -93,13 +93,18 @@ arrow_python_lib = library(
93
install_dir: py.get_install_dir() / 'pyarrow',
94
)
95
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
+
101
cython_modules = {
102
'lib': {},
- '_compute': {},
- '_csv': {},
103
+ '_compute': {'dependencies': [arrow_compute_dep]},
104
+ '_csv': {'dependencies': [arrow_csv_dep]},
105
'_feather': {},
- '_fs': {},
- '_json': {},
106
+ '_fs': {'dependencies': [arrow_fs_dep]},
107
+ '_json': {'dependencies': [arrow_json_dep]},
108
'_pyarrow_cpp_tests': {},
109
}
110
0 commit comments