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 9d7456d commit af47715Copy full SHA for af47715
tests/conftest.py
@@ -333,9 +333,9 @@ def huggingface_training_compiler_pytorch_py_version(
333
def huggingface_pytorch_latest_training_py_version(
334
huggingface_training_pytorch_latest_version,
335
):
336
- if Version(huggingface_pytorch_training_version) >= Version("1.13"):
+ if Version(huggingface_training_pytorch_latest_version) >= Version("1.13"):
337
return "py39"
338
- elif Version(huggingface_pytorch_training_version) >= Version("1.9"):
+ elif Version(huggingface_training_pytorch_latest_version) >= Version("1.9"):
339
return "py38"
340
else:
341
return "py36"
0 commit comments