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:
Changming Sun 2020-12-07 10:23:07 -08:00 committed by GitHub
parent 020efc9002
commit 925879a8b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 6 deletions

View file

@ -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")

View file

@ -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