diff --git a/tests/core/test_about.py b/tests/core/test_about.py index df89f4a3d..415077227 100644 --- a/tests/core/test_about.py +++ b/tests/core/test_about.py @@ -96,6 +96,8 @@ def test_get_supported_pythons_sdk(): [ (">=3.7,<3.12", ["3.7", "3.8", "3.9", "3.10", "3.11"]), (">=3.7", ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]), + (">3.7", ["3.8", "3.9", "3.10", "3.11", "3.12"]), + (">3.7,<=3.11", ["3.8", "3.9", "3.10", "3.11"]), ], ) def test_get_supported_pythons(specifiers: str, expected: list[str]):