From 0bf7120b67a1d3b022fb4b0dc473d641e96b4c6f Mon Sep 17 00:00:00 2001 From: sirutBuasai Date: Mon, 7 Jul 2025 15:11:22 -0700 Subject: [PATCH 1/2] Update TF DLC python version to py312 --- tests/conftest.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 7557c87fbe..03ce1b3c77 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -554,7 +554,9 @@ def _tf_py_version(tf_version, request): return "py38" if Version("2.8") <= version < Version("2.12"): return "py39" - return "py310" + if Version("2.12") <= version < Version("2.19"): + return "py310" + return "py312" @pytest.fixture(scope="module") From b6be494b8bc1eb72ade0e47f945edc02717b0573 Mon Sep 17 00:00:00 2001 From: sirutBuasai Date: Mon, 7 Jul 2025 17:36:53 -0700 Subject: [PATCH 2/2] catch integ version --- tests/conftest.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 03ce1b3c77..34f5c5306d 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -599,7 +599,9 @@ def tf_full_py_version(tf_full_version): return "py38" if version < Version("2.12"): return "py39" - return "py310" + if version < Version("2.19"): + return "py310" + return "py312" @pytest.fixture(scope="module")