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
ser = pd.Series(range(5)) ser2 = ser.astype("uint64") ii = pd.IntervalIndex.from_arrays(ser.values, ser2.values) >>> ii.right.dtype dtype('uint64')
We do some casting in _ensure_simple_new_inputs to check we have matching dtypes, but looks like we miss signed-vs-unsigned cases.
The text was updated successfully, but these errors were encountered:
Hi , I would like to work on this issue. Could you provide some more info on the bug and what is expected in the bugfix.
Sorry, something went wrong.
No branches or pull requests
We do some casting in _ensure_simple_new_inputs to check we have matching dtypes, but looks like we miss signed-vs-unsigned cases.
The text was updated successfully, but these errors were encountered: