Skip to content

Commit ac402f0

Browse files
committed
Set language_level = 3
1 parent 8ae63f1 commit ac402f0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

python/pyarrow/gandiva.pyx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
# cython: profile=False
1919
# distutils: language = c++
2020
# cython: embedsignature = True
21+
# cython: language_level = 3
2122

2223
from libcpp cimport bool as c_bool, nullptr
2324
from libcpp.memory cimport shared_ptr, unique_ptr, make_shared

python/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,13 +158,13 @@ def initialize_options(self):
158158
os.environ.get('PYARROW_BUNDLE_BOOST', '0'))
159159

160160
CYTHON_MODULE_NAMES = [
161-
'gandiva',
162161
'lib',
163162
'_csv',
164163
'_cuda',
165164
'_parquet',
166165
'_orc',
167-
'_plasma']
166+
'_plasma',
167+
'gandiva']
168168

169169
def _run_cmake(self):
170170
# The directory containing this setup.py

0 commit comments

Comments
 (0)