We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7527c3a commit 2bc6f8aCopy full SHA for 2bc6f8a
tests/playwright/shiny/components/data_frame/data_type/app.py
@@ -3,12 +3,11 @@
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
+if sys.version_info[:2] == (3, 13):
+ # This block executes for Python 3.13
10
raise RuntimeError("This test is not supported on Python 3.13")
11
-
+else:
+ import modin.pandas as mpd # pyright: ignore[reportMissingTypeStubs]
12
import narwhals.stable.v1 as nw
13
import palmerpenguins # pyright: ignore[reportMissingTypeStubs]
14
import polars as pl
0 commit comments