From 0df192989798bac1cc8ba540e1472aaf6d4cde57 Mon Sep 17 00:00:00 2001 From: Karthik Nadig Date: Mon, 7 Oct 2024 11:29:40 -0700 Subject: [PATCH] Fix version --- python_files/tests/testing_tools/adapter/test_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_files/tests/testing_tools/adapter/test_util.py b/python_files/tests/testing_tools/adapter/test_util.py index e93ecee02eb7..50f089361f0a 100644 --- a/python_files/tests/testing_tools/adapter/test_util.py +++ b/python_files/tests/testing_tools/adapter/test_util.py @@ -26,7 +26,7 @@ def is_python313_or_later(): - return sys.version_info >= (3, 1, 3) + return sys.version_info >= (3, 13) def test_isolated_imports():