We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c48d7c8 commit b68a810Copy full SHA for b68a810
tests/conftest.py
@@ -253,7 +253,9 @@ def mxnet_eia_latest_py_version():
253
254
@pytest.fixture(scope="module", params=["py2", "py3"])
255
def pytorch_training_py_version(pytorch_training_version, request):
256
- if Version(pytorch_training_version) >= Version("2.0"):
+ if Version(pytorch_training_version) >= Version("2.3"):
257
+ return "py311"
258
+ elif Version(pytorch_training_version) >= Version("2.0"):
259
return "py310"
260
elif Version(pytorch_training_version) >= Version("1.13"):
261
return "py39"
0 commit comments