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 1db1c01 commit b94f096Copy full SHA for b94f096
tests/_utils.py
@@ -25,6 +25,6 @@ def skip_if_below_python_version() -> pytest.mark.skipif:
25
>>> def test_some_feature():
26
>>> assert True
27
"""
28
- MIN_VERSION = (3, 11)
+ MIN_VERSION = (3, 13)
29
reason = f"Test requires Python {'.'.join(map(str, MIN_VERSION))} or higher"
30
return pytest.mark.skipif(sys.version_info < MIN_VERSION, reason=reason)
0 commit comments