mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-30 03:37:44 +00:00
Remove python 3.6 from training pipelines (#10780)
Because the numpy we use doesn't support python 3.6. And inference pipelines already removed python 3.6.
This commit is contained in:
parent
9d30262422
commit
d8bf9a479b
3 changed files with 2 additions and 15 deletions
|
|
@ -15,8 +15,6 @@ stages:
|
|||
|
||||
strategy:
|
||||
matrix:
|
||||
Python36:
|
||||
PythonVersion: '3.6'
|
||||
Python37:
|
||||
PythonVersion: '3.7'
|
||||
Python38:
|
||||
|
|
|
|||
|
|
@ -57,14 +57,6 @@ stages:
|
|||
pool: ${{ parameters.agent_pool }}
|
||||
strategy:
|
||||
matrix:
|
||||
Python36:
|
||||
PythonVersion: '3.6'
|
||||
TorchVersion: ${{ parameters.torch_version }}
|
||||
OpsetVersion: ${{ parameters.opset_version }}
|
||||
CudaVersion: ${{ parameters.cuda_version }}
|
||||
DockerFile: ${{ parameters.docker_file }}
|
||||
GccVersion: ${{ parameters.gcc_version }}
|
||||
UploadWheel: ${{ parameters.upload_wheel }}
|
||||
Python37:
|
||||
PythonVersion: '3.7'
|
||||
TorchVersion: ${{ parameters.torch_version }}
|
||||
|
|
|
|||
|
|
@ -9,11 +9,8 @@ steps:
|
|||
script: |
|
||||
version = "$(PythonVersion)"
|
||||
|
||||
if version == "3.6":
|
||||
variables = {
|
||||
"PythonManylinuxDir": "/opt/python/cp36-cp36m"
|
||||
}
|
||||
elif version == "3.7":
|
||||
|
||||
if version == "3.7":
|
||||
variables = {
|
||||
"PythonManylinuxDir": "/opt/python/cp37-cp37m"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue