From d282c4939a6090cbab6e24e341919deff6d05bda Mon Sep 17 00:00:00 2001 From: Martha Cryan Date: Tue, 11 Feb 2025 12:30:15 -0600 Subject: [PATCH] Set vaex tests to run on only python 3.9 --- tests/test_optional/test_px/test_px_input.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_optional/test_px/test_px_input.py b/tests/test_optional/test_px/test_px_input.py index 78b0bc3f76..6ba7b0c3f8 100644 --- a/tests/test_optional/test_px/test_px_input.py +++ b/tests/test_optional/test_px/test_px_input.py @@ -14,7 +14,7 @@ import warnings -if optional_imports.get_module("vaex") is None and sys.version_info > (3, 9): +if optional_imports.get_module("vaex") is None and sys.version_info == (3, 9): TEST_LIBS = ["polars"] else: TEST_LIBS = ["vaex", "polars"]