Skip to content

Commit 447d948

Browse files
committed
fix(plot.TC) py3.6 has other docstrings for pandas
1 parent 4431c63 commit 447d948

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/test_plot.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -789,6 +789,10 @@ def test_degenerate_pipeline():
789789
compose("defs", operation(str, "a")).plot()
790790

791791

792+
@pytest.mark.skipif(
793+
sys.version_info < (3, 8),
794+
reason="PY3.7 - has different docstrings for multiindex series.",
795+
)
792796
def test_plot_pandas_numpy():
793797
import numpy as np
794798
import pandas as pd

0 commit comments

Comments
 (0)