Skip to content

Commit f140060

Browse files
committed
Address review
1 parent f780164 commit f140060

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test_requirements/requirements_optional.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ pyarrow
2424
narwhals
2525
anywidget
2626
plotly-geo
27-
vaex;python_version=="3.9"
27+
vaex;python_version<="3.9"

tests/test_optional/test_px/test_px_input.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import warnings
1515

1616

17-
if optional_imports.get_module("vaex") is None:
17+
if optional_imports.get_module("vaex") is None and sys.version_info > (3, 9):
1818
TEST_LIBS = ["polars"]
1919
else:
2020
TEST_LIBS = ["vaex", "polars"]

0 commit comments

Comments
 (0)