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 8ae63f1 commit ac402f0Copy full SHA for ac402f0
python/pyarrow/gandiva.pyx
@@ -18,6 +18,7 @@
18
# cython: profile=False
19
# distutils: language = c++
20
# cython: embedsignature = True
21
+# cython: language_level = 3
22
23
from libcpp cimport bool as c_bool, nullptr
24
from libcpp.memory cimport shared_ptr, unique_ptr, make_shared
python/setup.py
@@ -158,13 +158,13 @@ def initialize_options(self):
158
os.environ.get('PYARROW_BUNDLE_BOOST', '0'))
159
160
CYTHON_MODULE_NAMES = [
161
- 'gandiva',
162
'lib',
163
'_csv',
164
'_cuda',
165
'_parquet',
166
'_orc',
167
- '_plasma']
+ '_plasma',
+ 'gandiva']
168
169
def _run_cmake(self):
170
# The directory containing this setup.py
0 commit comments