Skip to content

Commit

Permalink
Update tests/playwright/shiny/components/data_frame/data_type/app.py
Browse files Browse the repository at this point in the history
Co-authored-by: Copilot <[email protected]>
  • Loading branch information
karangattu and Copilot authored Mar 4, 2025
1 parent 7527c3a commit 2bc6f8a
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions tests/playwright/shiny/components/data_frame/data_type/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
import sys

# Remove this conditional once modin is supported on Python 3.13
if sys.version_info < (3, 13):
import modin.pandas as mpd # pyright: ignore[reportMissingTypeStubs]
else:
# This block executes for Python 3.13 and above
if sys.version_info[:2] == (3, 13):
# This block executes for Python 3.13
raise RuntimeError("This test is not supported on Python 3.13")

else:
import modin.pandas as mpd # pyright: ignore[reportMissingTypeStubs]
import narwhals.stable.v1 as nw
import palmerpenguins # pyright: ignore[reportMissingTypeStubs]
import polars as pl
Expand Down

0 comments on commit 2bc6f8a

Please sign in to comment.