aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Mehrdad Afshari <mehrdada@users.noreply.github.com>2018-07-09 17:04:47 -0700
committerGravatar GitHub <noreply@github.com>2018-07-09 17:04:47 -0700
commitff38bb6aaed289aba57fb9da318122e0843a8316 (patch)
tree9182e21b395a4df2bbebf001d1f311eb33d5a732
parent19b8398b141bee3826448aa0e468c62a5c0f3db8 (diff)
parent2a046b71e373c917ae58100b28678ba77bc858e5 (diff)
Merge pull request #15963 from mehrdada/python37-mac-windows-wheels-64bit
Add Python 3.7 Mac and Windows artifact targets (64bit)
-rwxr-xr-xtools/internal_ci/macos/grpc_build_artifacts.sh1
-rw-r--r--tools/run_tests/artifacts/artifact_targets.py2
2 files changed, 3 insertions, 0 deletions
diff --git a/tools/internal_ci/macos/grpc_build_artifacts.sh b/tools/internal_ci/macos/grpc_build_artifacts.sh
index 4dcc528d80..54b171d209 100755
--- a/tools/internal_ci/macos/grpc_build_artifacts.sh
+++ b/tools/internal_ci/macos/grpc_build_artifacts.sh
@@ -25,6 +25,7 @@ python2.7 -m pip install cython setuptools wheel
python3.4 -m pip install cython setuptools wheel
python3.5 -m pip install cython setuptools wheel
python3.6 -m pip install cython setuptools wheel
+python3.7 -m pip install cython setuptools wheel
# needed to build ruby artifacts
time bash tools/distrib/build_ruby_environment_macos.sh
diff --git a/tools/run_tests/artifacts/artifact_targets.py b/tools/run_tests/artifacts/artifact_targets.py
index 35cbd730c8..edde3eae28 100644
--- a/tools/run_tests/artifacts/artifact_targets.py
+++ b/tools/run_tests/artifacts/artifact_targets.py
@@ -373,6 +373,7 @@ def targets():
PythonArtifact('macos', 'x64', 'python3.4'),
PythonArtifact('macos', 'x64', 'python3.5'),
PythonArtifact('macos', 'x64', 'python3.6'),
+ PythonArtifact('macos', 'x64', 'python3.7'),
PythonArtifact('windows', 'x86', 'Python27_32bits'),
PythonArtifact('windows', 'x86', 'Python34_32bits'),
PythonArtifact('windows', 'x86', 'Python35_32bits'),
@@ -381,6 +382,7 @@ def targets():
PythonArtifact('windows', 'x64', 'Python34'),
PythonArtifact('windows', 'x64', 'Python35'),
PythonArtifact('windows', 'x64', 'Python36'),
+ PythonArtifact('windows', 'x64', 'Python37'),
RubyArtifact('linux', 'x64'),
RubyArtifact('macos', 'x64'),
PHPArtifact('linux', 'x64'),