Skip to content

Commit b66868a

Browse files
tejaschumbalkarknikure
authored andcommitted
fix python version
1 parent 6acf4d3 commit b66868a

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
@@ -493,7 +493,9 @@ def _tf_py_version(tf_version, request):
493493
return "py37"
494494
if Version("2.6") <= version < Version("2.8"):
495495
return "py38"
496-
return "py39"
496+
if Version("2.8") <= version < Version("2.12"):
497+
return "py39"
498+
return "py310"
497499

498500

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

0 commit comments

Comments
 (0)