Remove Spec Version constant as the main spec is versioned now

This commit is contained in:
mbohlool 2017-04-25 10:42:08 -07:00
parent 2c1535dff7
commit 07013a0722
3 changed files with 2 additions and 14 deletions

View File

@ -48,9 +48,6 @@ numbers (integers) and D is one of "a" for alpha or "b" for beta and n is the
pre-release number. For a final release, "Dn" part should be omitted. Examples:
1.0.0a1, 2.0.1b2, 1.5.1.
SPEC_VERSION: This would be the kubernetes OpenAPI spec version. It should be
deprecated after kubernetes/kubernetes#37055 takes effect.
DEVELOPMENT_STATUS: Update it to one of the values of "Development Status"
in [this list](https://pypi.python.org/pypi?%3Aaction=list_classifiers).

View File

@ -17,12 +17,7 @@ import sys
# Kubernetes branch to get the OpenAPI spec from.
KUBERNETES_BRANCH = "release-1.6"
# Spec version will be set in downloaded spec and all
# generated code will refer to it.
SPEC_VERSION = "v1.6.1"
# client version for packaging and releasing. It can
# be different than SPEC_VERSION.
# client version for packaging and releasing.
CLIENT_VERSION = "2.0.0-snapshot"
# Name of the release package

View File

@ -20,7 +20,7 @@ from collections import OrderedDict
import urllib3
from constants import KUBERNETES_BRANCH, SPEC_VERSION
from constants import KUBERNETES_BRANCH
# these four constants are shown as part of this example in []:
# "[watch]Pod[List]" is the deprecated version of "[list]Pod?[watch]=True"
@ -119,10 +119,6 @@ def process_swagger(spec):
inline_primitive_models(spec)
# TODO: Kubernetes does not set a version for OpenAPI spec yet,
# remove this when that is fixed.
spec['info']['version'] = SPEC_VERSION
return spec