Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit 829df36

Browse files
authored
Fix warning about using nopython=True with ngit (#776)
1 parent a78c1fd commit 829df36

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sdc/hiframes/pd_dataframe_ext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ def codegen(context, builder, sig, args):
160160
# TODO: alias analysis
161161
# this function should be used for getting df._data for alias analysis to work
162162
# no_cpython_wrapper since Array(DatetimeDate) cannot be boxed
163-
@numba.njit(nopython=True, no_cpython_wrapper=True, inline='always')
163+
@numba.njit(no_cpython_wrapper=True, inline='always')
164164
def get_dataframe_data(df, i):
165165
return df._data[i]
166166

0 commit comments

Comments
 (0)