You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The test cases under TestPandasSetitem.test_setitem_series() fail on Pandas 1.3.0 due to pandas-dev/pandas#42437.
These tests create a Series of dtype object and attempt to assign a TensorArray to that series. They fail because Pandas passes the TensorArray through numpy.asarray(), which turns the TensorArray into a 2D ndarray instead of a 1D array of ndarray objects.
Users should be able to work around this issue for now by explicitly casting TensorArrays to dtype of object, then performing the assignment.
The text was updated successfully, but these errors were encountered:
The test cases under
TestPandasSetitem.test_setitem_series()
fail on Pandas 1.3.0 due to pandas-dev/pandas#42437.These tests create a Series of dtype
object
and attempt to assign a TensorArray to that series. They fail because Pandas passes the TensorArray throughnumpy.asarray()
, which turns the TensorArray into a 2D ndarray instead of a 1D array of ndarray objects.Users should be able to work around this issue for now by explicitly casting TensorArrays to dtype of
object
, then performing the assignment.The text was updated successfully, but these errors were encountered: