Skip to content

Commit 0bf7120

Browse files
committed
Update TF DLC python version to py312
1 parent 3ec9378 commit 0bf7120

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/conftest.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,9 @@ def _tf_py_version(tf_version, request):
554554
return "py38"
555555
if Version("2.8") <= version < Version("2.12"):
556556
return "py39"
557-
return "py310"
557+
if Version("2.12") <= version < Version("2.19"):
558+
return "py310"
559+
return "py312"
558560

559561

560562
@pytest.fixture(scope="module")

0 commit comments

Comments
 (0)