Skip to content

Commit d8096d4

Browse files
committed
upgrade pandas from 2.0.1 to 2.0.2
Signed-off-by: Anatoly Myachev <[email protected]>
1 parent e01de2b commit d8096d4

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

packages/python/plotly/plotly/tests/test_optional/test_px/test_px_input.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import numpy as np
44
import pandas as pd
55
import pytest
6+
from packaging import version
67
import unittest.mock as mock
78
from plotly.express._core import build_dataframe
89
from pandas.testing import assert_frame_equal
@@ -268,6 +269,10 @@ def __dataframe__(self):
268269
mock_from_dataframe.assert_called_once_with(input_dataframe)
269270

270271

272+
@pytest.mark.skipif(
273+
version.parse(pd.__version__) < version.parse("2.0.2"),
274+
reason="plotly doesn't use a dataframe interchange protocol for pandas < 2.0.2",
275+
)
271276
def test_build_df_from_vaex():
272277
import vaex
273278

packages/python/plotly/test_requirements/requirements_39_pandas_2_optional.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
requests==2.25.1
22
tenacity==6.2.0
3-
pandas==2.0.1
3+
pandas==2.0.2
44
numpy==1.20.3
55
xarray==0.17.0
66
statsmodels

0 commit comments

Comments
 (0)