From 8536a5f043de7ac1653343dd07860b26ec997036 Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Fri, 8 Jan 2021 16:53:43 -0700 Subject: [PATCH 1/3] fix: fix development status classifier --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ed51a6fbc..ac8a881a9 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ ), python_requires=">=3.6", classifiers=[ - "Development Status :: 4 - Beta", + "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Operating System :: OS Independent", "Programming Language :: Python :: 3.6", From 3f11247e252041dc80b41d24ae0d48fe68fb1587 Mon Sep 17 00:00:00 2001 From: Bu Sun Kim Date: Wed, 13 Jan 2021 00:07:22 +0000 Subject: [PATCH 2/3] fix: fix kokoro configs for docs --- .kokoro/docs/common.cfg | 4 ++-- .kokoro/docs/docs-presubmit.cfg | 6 ------ .kokoro/docs/docs.cfg | 8 +++++++- .repo-metadata.json | 2 +- .trampolinerc | 1 - 5 files changed, 10 insertions(+), 11 deletions(-) diff --git a/.kokoro/docs/common.cfg b/.kokoro/docs/common.cfg index fd5cbe28b..90a255bf8 100644 --- a/.kokoro/docs/common.cfg +++ b/.kokoro/docs/common.cfg @@ -33,10 +33,10 @@ env_vars: { value: "docs-staging-v2" } -# It will upload the docker image after successful builds. +# Don't update the docker image from this build env_vars: { key: "TRAMPOLINE_IMAGE_UPLOAD" - value: "true" + value: "false" } # It will always build the docker image. diff --git a/.kokoro/docs/docs-presubmit.cfg b/.kokoro/docs/docs-presubmit.cfg index 8fd4ab105..b8c8a7a42 100644 --- a/.kokoro/docs/docs-presubmit.cfg +++ b/.kokoro/docs/docs-presubmit.cfg @@ -10,12 +10,6 @@ env_vars: { value: "gcloud-python-test" } -# We only upload the image in the main `docs` build. -env_vars: { - key: "TRAMPOLINE_IMAGE_UPLOAD" - value: "false" -} - env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/python-compute/.kokoro/build.sh" diff --git a/.kokoro/docs/docs.cfg b/.kokoro/docs/docs.cfg index 8f43917d9..f03c1bd54 100644 --- a/.kokoro/docs/docs.cfg +++ b/.kokoro/docs/docs.cfg @@ -1 +1,7 @@ -# Format: //devtools/kokoro/config/proto/build.proto \ No newline at end of file +# Format: //devtools/kokoro/config/proto/build.proto + +# Only run this nox session. +env_vars: { + key: "NOX_SESSION" + value: "docs docfx" +} diff --git a/.repo-metadata.json b/.repo-metadata.json index ccd2629f3..00f9bb7dc 100644 --- a/.repo-metadata.json +++ b/.repo-metadata.json @@ -4,7 +4,7 @@ "product_documentation": "https://cloud.google.com/compute/", "client_documentation": "https://googleapis.dev/python/compute/latest", "issue_tracker": "https://issuetracker.google.com/issues/new?component=187134&template=0", - "release_level": "beta", + "release_level": "alpha", "language": "python", "repo": "googleapis/python-compute", "distribution_name": "google-cloud-compute", diff --git a/.trampolinerc b/.trampolinerc index c7d663ae9..383b6ec89 100644 --- a/.trampolinerc +++ b/.trampolinerc @@ -18,7 +18,6 @@ required_envvars+=( "STAGING_BUCKET" "V2_STAGING_BUCKET" - "NOX_SESSION" ) # Add env vars which are passed down into the container here. From 46ca1faeb5ee1cae0748aacb6fbc73bc421826ed Mon Sep 17 00:00:00 2001 From: Bu Sun Kim Date: Wed, 13 Jan 2021 00:08:25 +0000 Subject: [PATCH 3/3] fix: remove NOX_SESSION from docs/docs.cfg --- .kokoro/docs/docs.cfg | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.kokoro/docs/docs.cfg b/.kokoro/docs/docs.cfg index f03c1bd54..18a4c3532 100644 --- a/.kokoro/docs/docs.cfg +++ b/.kokoro/docs/docs.cfg @@ -1,7 +1 @@ # Format: //devtools/kokoro/config/proto/build.proto - -# Only run this nox session. -env_vars: { - key: "NOX_SESSION" - value: "docs docfx" -}