File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -173,6 +173,8 @@ def mxnet_eia_latest_py_version():
173
173
def pytorch_training_py_version (pytorch_training_version , request ):
174
174
if Version (pytorch_training_version ) < Version ("1.5.0" ):
175
175
return request .param
176
+ elif Version (pytorch_training_version ) == Version ("1.7.1" ):
177
+ return "py36"
176
178
else :
177
179
return "py3"
178
180
@@ -181,6 +183,8 @@ def pytorch_training_py_version(pytorch_training_version, request):
181
183
def pytorch_inference_py_version (pytorch_inference_version , request ):
182
184
if Version (pytorch_inference_version ) < Version ("1.4.0" ):
183
185
return request .param
186
+ elif Version (pytorch_inference_version ) == Version ("1.7.1" ):
187
+ return "py36"
184
188
else :
185
189
return "py3"
186
190
You can’t perform that action at this time.
0 commit comments