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 2bc6f8a commit 3038b72Copy full SHA for 3038b72
tests/playwright/shiny/components/data_frame/data_type/app.py
@@ -3,11 +3,11 @@
3
import sys
4
5
# 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:
+if sys.version_info < (3, 13):
10
import modin.pandas as mpd # pyright: ignore[reportMissingTypeStubs]
+else:
+ raise RuntimeError("This test is not supported on Python 3.13")
+
11
import narwhals.stable.v1 as nw
12
import palmerpenguins # pyright: ignore[reportMissingTypeStubs]
13
import polars as pl
0 commit comments