Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
Loading