-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
Closed
Labels
BugDtype ConversionsUnexpected or buggy dtype conversionsUnexpected or buggy dtype conversionsWindowsWindows OSWindows OS
Milestone
Description
This just started failing on windows on master, in the last few PR's. Prob related to #13147.
tuples are not being upcast like lists.
======================================================================
FAIL: test_alignment_non_pandas (pandas.tests.frame.test_operators.TestDataFrameOperators)
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Users\conda\Documents\pandas3.5\pandas\tests\frame\test_operators.py", line 1203, in test_alignment_non_pandas
Series([1, 2, 3], index=df.index))
File "C:\Users\conda\Documents\pandas3.5\pandas\util\testing.py", line 1157, in assert_series_equal
assert_attr_equal('dtype', left, right)
File "C:\Users\conda\Documents\pandas3.5\pandas\util\testing.py", line 882, in assert_attr_equal
left_attr, right_attr)
File "C:\Users\conda\Documents\pandas3.5\pandas\util\testing.py", line 1021, in raise_assert_detail
raise AssertionError(msg)
AssertionError: Attributes are different
Attribute "dtype" are different
[left]: int32
[right]: int64None
In [3]: import pandas as pd
In [4]: pd.__version__
Out[4]: '0.18.1+193.g20de266.dirty'
In [5]: pd.Series((1,2,3))
Out[5]:
0 1
1 2
2 3
dtype: int32
In [6]: pd.Series([1,2,3])
Out[6]:
0 1
1 2
2 3
dtype: int64
Metadata
Metadata
Assignees
Labels
BugDtype ConversionsUnexpected or buggy dtype conversionsUnexpected or buggy dtype conversionsWindowsWindows OSWindows OS