File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed
tests/playwright/shiny/components Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 11from __future__ import annotations
22
3- import modin .pandas as mpd # pyright: ignore[reportMissingTypeStubs]
3+ import sys
4+
5+ # Remove this conditional once modin is supported on Python 3.13
6+ if sys .version_info < (3 , 13 ):
7+ import modin .pandas as mpd # pyright: ignore[reportMissingTypeStubs]
8+ else :
9+ # This block executes for Python 3.13 and above
10+ raise RuntimeError ("This test is not supported on Python 3.13" )
11+
412import narwhals .stable .v1 as nw
513import palmerpenguins # pyright: ignore[reportMissingTypeStubs]
614import polars as pl
Original file line number Diff line number Diff line change 11from __future__ import annotations
22
3- import modin .pandas as md # pyright: ignore[reportMissingTypeStubs]
3+ import sys
4+
5+ # Remove this conditional once modin is supported on Python 3.13
6+ if sys .version_info < (3 , 13 ):
7+ import modin .pandas as md # pyright: ignore[reportMissingTypeStubs]
8+ else :
9+ # This block executes for Python 3.13 and above
10+ raise RuntimeError ("This test is not supported on Python 3.13" )
411import narwhals .stable .v1 as nw
512import palmerpenguins # pyright: ignore[reportMissingTypeStubs]
613
You can’t perform that action at this time.
0 commit comments