We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ec9378 commit e9d663cCopy full SHA for e9d663c
tests/conftest.py
@@ -554,7 +554,9 @@ def _tf_py_version(tf_version, request):
554
return "py38"
555
if Version("2.8") <= version < Version("2.12"):
556
return "py39"
557
- return "py310"
+ if Version("2.12") <= version < Version("2.19"):
558
+ return "py310"
559
+ return "py312"
560
561
562
@pytest.fixture(scope="module")
@@ -597,7 +599,9 @@ def tf_full_py_version(tf_full_version):
597
599
598
600
if version < Version("2.12"):
601
602
+ if version < Version("2.19"):
603
604
605
606
607
0 commit comments