Skip to content

Commit

Permalink
Remove python 3.8 Windows GPU build from python packaging pipeline (m…
Browse files Browse the repository at this point in the history
…icrosoft#6054)

Revert the last a few changes to get the pipeline back to a normal state.
  • Loading branch information
snnn authored Dec 7, 2020
1 parent 020efc9 commit 925879a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 2 additions & 2 deletions onnxruntime/python/_pybind_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
# 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")
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 925879a

Please sign in to comment.