From 54814f8ad15b8f8dff051c7c7819bc4a7b8e099f Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Wed, 20 Jan 2021 13:44:02 -0700 Subject: [PATCH] fix: set development status classifier to alpha (#2) Fix the development status classifier to be consistent with 'alpha' in the README. Also fixes some docs related kokoro configs. The `docs/docs.cfg` job that is triggered by successfulrelease jobs was failing because `NOX_SESSION` was in the required env vars list. --- .kokoro/docs/common.cfg | 4 ++-- .kokoro/docs/docs-presubmit.cfg | 6 ------ .kokoro/docs/docs.cfg | 2 +- .repo-metadata.json | 2 +- setup.py | 2 +- 5 files changed, 5 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..18a4c3532 100644 --- a/.kokoro/docs/docs.cfg +++ b/.kokoro/docs/docs.cfg @@ -1 +1 @@ -# Format: //devtools/kokoro/config/proto/build.proto \ No newline at end of file +# Format: //devtools/kokoro/config/proto/build.proto 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/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",