Skip to content

Commit 3038b72

Browse files
committed
use approach Winston suggested
1 parent 2bc6f8a commit 3038b72

File tree

1 file changed

+4
-4
lines changed
  • tests/playwright/shiny/components/data_frame/data_type

1 file changed

+4
-4
lines changed

tests/playwright/shiny/components/data_frame/data_type/app.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
import sys
44

55
# Remove this conditional once modin is supported on Python 3.13
6-
if sys.version_info[:2] == (3, 13):
7-
# This block executes for Python 3.13
8-
raise RuntimeError("This test is not supported on Python 3.13")
9-
else:
6+
if sys.version_info < (3, 13):
107
import modin.pandas as mpd # pyright: ignore[reportMissingTypeStubs]
8+
else:
9+
raise RuntimeError("This test is not supported on Python 3.13")
10+
1111
import narwhals.stable.v1 as nw
1212
import palmerpenguins # pyright: ignore[reportMissingTypeStubs]
1313
import polars as pl

0 commit comments

Comments
 (0)