Skip to content

Commit 0b37b93

Browse files
fix python version
1 parent 7eb66c7 commit 0b37b93

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
@@ -489,7 +489,9 @@ def _tf_py_version(tf_version, request):
489489
return "py37"
490490
if Version("2.6") <= version < Version("2.8"):
491491
return "py38"
492-
return "py39"
492+
if Version("2.8") <= version < Version("2.12"):
493+
return "py39"
494+
return "py310"
493495

494496

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

0 commit comments

Comments
 (0)