Skip to content

Commit b94f096

Browse files
committed
fix min test small datasets
1 parent 1db1c01 commit b94f096

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ def skip_if_below_python_version() -> pytest.mark.skipif:
2525
>>> def test_some_feature():
2626
>>> assert True
2727
"""
28-
MIN_VERSION = (3, 11)
28+
MIN_VERSION = (3, 13)
2929
reason = f"Test requires Python {'.'.join(map(str, MIN_VERSION))} or higher"
3030
return pytest.mark.skipif(sys.version_info < MIN_VERSION, reason=reason)

0 commit comments

Comments
 (0)