mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-30 20:18:08 +00:00
Remove python 3.8 Windows GPU build from python packaging pipeline (#6054)
Revert the last a few changes to get the pipeline back to a normal state.
This commit is contained in:
parent
020efc9002
commit
925879a8b0
2 changed files with 2 additions and 6 deletions
|
|
@ -21,6 +21,6 @@ except ImportError as e:
|
|||
# TODO: Add a guard against False Positive error message
|
||||
# As a proxy for checking if the 2019 VC Runtime is installed,
|
||||
# we look for a specific dll only shipped with the 2019 VC Runtime
|
||||
if platform.system() == "Windows" and not os.path.isfile("C:\\Windows\\System32\\vcruntime140_1.dll"):
|
||||
if platform.system().lower() == 'windows' and not os.path.isfile('c:\\Windows\\System32\\vcruntime140_1.dll'):
|
||||
warnings.warn("Unless you have built the wheel using VS 2017, "
|
||||
"please install the 2019 Visual C++ runtime and then try again.")
|
||||
"please install the 2019 Visual C++ runtime and then try again")
|
||||
|
|
|
|||
|
|
@ -625,10 +625,6 @@ stages:
|
|||
PythonVersion: '3.6'
|
||||
Python37:
|
||||
PythonVersion: '3.7'
|
||||
Python38:
|
||||
PythonVersion: '3.8'
|
||||
Python39:
|
||||
PythonVersion: '3.9'
|
||||
steps:
|
||||
- checkout: self
|
||||
clean: true
|
||||
|
|
|
|||
Loading…
Reference in a new issue