We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
After installing isochrones, I tried to replicate the example bolometric correction calculations. However, after executing
`from isochrones.mist.bc import MISTBolometricCorrectionGrid
bc_grid = MISTBolometricCorrectionGrid(['J', 'H', 'K', 'G', 'BP', 'RP', 'g', 'r', 'i']) bc_grid.interp([5770, 4.44, 0.0, 0.], ['G', 'K'])`
I got the following error:
numba.core.errors.TypingError: Failed in nopython mode pipeline (step: nopython frontend) NameError: name 'unsafe_empty_inferred' is not defined
I would be very grateful for any help resolving this issue.
The text was updated successfully, but these errors were encountered:
I got the same error, turns out it's a bug in numba version 0.57.0: numba/numba#8958
Try running pip install numba --upgrade in your isochrones environment, that should resolve the error.
pip install numba --upgrade
isochrones
Sorry, something went wrong.
No branches or pull requests
After installing isochrones, I tried to replicate the example bolometric correction calculations.
However, after executing
`from isochrones.mist.bc import MISTBolometricCorrectionGrid
bc_grid = MISTBolometricCorrectionGrid(['J', 'H', 'K', 'G', 'BP', 'RP', 'g', 'r', 'i'])
bc_grid.interp([5770, 4.44, 0.0, 0.], ['G', 'K'])`
I got the following error:
I would be very grateful for any help resolving this issue.
The text was updated successfully, but these errors were encountered: