From b63f5177e82318c7c21509a2585a72f24e2d5f85 Mon Sep 17 00:00:00 2001 From: Lidi Zheng Date: Wed, 7 Oct 2020 16:47:54 -0700 Subject: [PATCH] Remove 3.9 Windows support --- .../helper_scripts/install_python_interpreters.ps1 | 4 ++-- tools/run_tests/artifacts/artifact_targets.py | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/tools/internal_ci/helper_scripts/install_python_interpreters.ps1 b/tools/internal_ci/helper_scripts/install_python_interpreters.ps1 index 9885adc34e1..f00317518f9 100644 --- a/tools/internal_ci/helper_scripts/install_python_interpreters.ps1 +++ b/tools/internal_ci/helper_scripts/install_python_interpreters.ps1 @@ -85,7 +85,7 @@ $Python39x86Config = @{ PythonInstallPath = "C:\Python39_32bit" PythonInstallerHash = "4a2812db8ab9f2e522c96c7728cfcccb" } -Install-Python @Python39x86Config +# Install-Python @Python39x86Config $Python39x64Config = @{ PythonVersion = "3.9.0" @@ -93,4 +93,4 @@ $Python39x64Config = @{ PythonInstallPath = "C:\Python39" PythonInstallerHash = "b61a33dc28f13b561452f3089c87eb63" } -Install-Python @Python39x64Config +# Install-Python @Python39x64Config diff --git a/tools/run_tests/artifacts/artifact_targets.py b/tools/run_tests/artifacts/artifact_targets.py index d78c4223734..3680e44cb5d 100644 --- a/tools/run_tests/artifacts/artifact_targets.py +++ b/tools/run_tests/artifacts/artifact_targets.py @@ -391,13 +391,15 @@ def targets(): PythonArtifact('windows', 'x86', 'Python36_32bit'), PythonArtifact('windows', 'x86', 'Python37_32bit'), PythonArtifact('windows', 'x86', 'Python38_32bit'), - PythonArtifact('windows', 'x86', 'Python39_32bit'), + # TODO(lidiz) uncomment if Python39 installs stably. + # PythonArtifact('windows', 'x86', 'Python39_32bit'), PythonArtifact('windows', 'x64', 'Python27'), PythonArtifact('windows', 'x64', 'Python35'), PythonArtifact('windows', 'x64', 'Python36'), PythonArtifact('windows', 'x64', 'Python37'), PythonArtifact('windows', 'x64', 'Python38'), - PythonArtifact('windows', 'x64', 'Python39'), + # TODO(lidiz) uncomment if Python39 installs stably. + # PythonArtifact('windows', 'x64', 'Python39'), RubyArtifact('linux', 'x64'), RubyArtifact('macos', 'x64'), PHPArtifact('linux', 'x64')