10000 COMPAT: Fix warning with numba >= 0.58.0 by lithomas1 · Pull Request #55327 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

COMPAT: Fix warning with numba >= 0.58.0 #55327

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jan 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update numba_.py
  • Loading branch information
lithomas1 authored Oct 2, 2023
commit aa60545e542f6f55fae5265de25f89676b393599
2 changes: 1 addition & 1 deletion pandas/core/util/numba_.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
)

import numpy as np
import types

from pandas.compat._optional import import_optional_dependency
from pandas.errors import NumbaUtilError
Expand Down Expand Up @@ -81,7 +82,6 @@ def jit_user_function(func: Callable) -> Callable:
import numba
else:
numba = import_optional_dependency("numba")
import types

if numba.extending.is_jitted(func):
# Don't jit a user passed jitted function
Expand Down
0