diff --git a/.github/scripts/get_min_versions.py b/.github/scripts/get_min_versions.py index 089363fc732..f4719471393 100644 --- a/.github/scripts/get_min_versions.py +++ b/.github/scripts/get_min_versions.py @@ -103,7 +103,7 @@ def _check_python_version_from_requirement( return True else: marker_str = str(requirement.marker) - if "python_full_version" in marker_str: + if "python_version" or "python_full_version" in marker_str: python_version_str = "".join( char for char in marker_str