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
In xarray/tests/test_dataset.py::TestDataset::test_polyfit_warnings, the second call to polyfit:
ds.var1.polyfit("dim2", 10, full=True)
emits a warning with the current upstream-devpandas:
xarray/tests/test_dataset.py::TestDataset::test_polyfit_warnings
.../xarray/core/alignment.py:307: FutureWarning: Index.__or__ operating as a set operation is deprecated, in the future this will be a logical operation matching Series.__or__. Use index.union(other) instead
index = joiner(matching_indexes)
since the test makes sure only the first call emits a warning (a np.RankWarning), the test fails.
The text was updated successfully, but these errors were encountered:
In
xarray/tests/test_dataset.py::TestDataset::test_polyfit_warnings
, the second call topolyfit
:emits a warning with the current
upstream-dev
pandas
:since the test makes sure only the first call emits a warning (a
np.RankWarning
), the test fails.The text was updated successfully, but these errors were encountered: