Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1607ccf

Browse files
committed
Merge branch 'master' into better-pandas-warning
2 parents b49da0e + 817fef7 commit 1607ccf

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

packages/python/plotly/plotly/express/_core.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1486,9 +1486,8 @@ def build_dataframe(args, constructor):
14861486
# PySpark to pandas.
14871487
is_pd_like = False
14881488

1489-
# Flag that indicates if data_frame requires to be converted to arrow via the
1490-
# dataframe interchange protocol.
1491-
# True if Ibis, DuckDB, Vaex or implements __dataframe__
1489+
# Flag that indicates if data_frame needs to be converted to PyArrow.
1490+
# True if Ibis, DuckDB, Vaex, or implements __dataframe__
14921491
needs_interchanging = False
14931492

14941493
# If data_frame is provided, we parse it into a narwhals DataFrame, while accounting

packages/python/plotly/plotly/tests/test_optional/test_utils/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def np_inf():
9595
columns=["col 1"], data=[1, 2, 3, dt(2014, 1, 5), pd.NaT, np_nan(), np_inf()]
9696
)
9797

98-
rng = pd.date_range("1/1/2011", periods=2, freq="H")
98+
rng = pd.date_range("1/1/2011", periods=2, freq="h")
9999
ts = pd.Series([1.5, 2.5], index=rng)
100100

101101

0 commit comments

Comments
 (0)