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 0bf7120Copy full SHA for 0bf7120
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")
0 commit comments