Skip to content

Commit 5c0e763

Browse files
authored
Release Training SDK 1.9.1 (#2567)
Signed-off-by: Andrey Velichkevich <andrey.velichkevich@gmail.com>
1 parent 31da2d6 commit 5c0e763

37 files changed

+41
-41
lines changed

hack/python-sdk/gen-sdk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ SWAGGER_JAR_URL="https://repo1.maven.org/maven2/org/openapitools/openapi-generat
2424
SWAGGER_CODEGEN_JAR="${repo_root}/hack/python-sdk/openapi-generator-cli.jar"
2525
SWAGGER_CODEGEN_CONF="${repo_root}/hack/python-sdk/swagger_config.json"
2626
SDK_OUTPUT_PATH="${repo_root}/sdk/python"
27-
VERSION=1.9.0
27+
VERSION=1.9.1
2828
SWAGGER_CODEGEN_FILE="${repo_root}/hack/python-sdk/swagger.json"
2929

3030
if [ -z "${GOPATH:-}" ]; then

hack/python-sdk/swagger.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"info": {
44
"description": "Python SDK for Kubeflow Training",
55
"title": "Kubeflow Training SDK",
6-
"version": "v1.9.0"
6+
"version": "v1.9.1"
77
},
88
"paths": {},
99
"definitions": {

hack/python-sdk/swagger_config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"packageName": "kubeflow.training",
33
"projectName": "training",
4-
"packageVersion": "1.9.0",
4+
"packageVersion": "1.9.1",
55
"typeMappings": {
66
"V1Time": "datetime"
77
}

sdk/python/kubeflow/training/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
88
Python SDK for Kubeflow Training # noqa: E501
99
10-
The version of the OpenAPI document: v1.9.0
10+
The version of the OpenAPI document: v1.9.1
1111
Generated by: https://openapi-generator.tech
1212
"""
1313

1414

1515
from __future__ import absolute_import
1616

17-
__version__ = "1.9.0"
17+
__version__ = "1.9.1"
1818

1919
# import apis into sdk package
2020

sdk/python/kubeflow/training/api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Python SDK for Kubeflow Training # noqa: E501
66
7-
The version of the OpenAPI document: v1.9.0
7+
The version of the OpenAPI document: v1.9.1
88
Generated by: https://openapi-generator.tech
99
"""
1010

@@ -78,7 +78,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7878
self.default_headers[header_name] = header_value
7979
self.cookie = cookie
8080
# Set default User-Agent.
81-
self.user_agent = 'OpenAPI-Generator/1.9.0/python'
81+
self.user_agent = 'OpenAPI-Generator/1.9.1/python'
8282
self.client_side_validation = configuration.client_side_validation
8383

8484
def __enter__(self):

sdk/python/kubeflow/training/configuration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Python SDK for Kubeflow Training # noqa: E501
77
8-
The version of the OpenAPI document: v1.9.0
8+
The version of the OpenAPI document: v1.9.1
99
Generated by: https://openapi-generator.tech
1010
"""
1111

@@ -324,8 +324,8 @@ def to_debug_report(self):
324324
return "Python SDK Debug Report:\n"\
325325
"OS: {env}\n"\
326326
"Python Version: {pyversion}\n"\
327-
"Version of the API: v1.9.0\n"\
328-
"SDK Package Version: 1.9.0".\
327+
"Version of the API: v1.9.1\n"\
328+
"SDK Package Version: 1.9.1".\
329329
format(env=sys.platform, pyversion=sys.version)
330330

331331
def get_host_settings(self):

sdk/python/kubeflow/training/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Python SDK for Kubeflow Training # noqa: E501
77
8-
The version of the OpenAPI document: v1.9.0
8+
The version of the OpenAPI document: v1.9.1
99
Generated by: https://openapi-generator.tech
1010
"""
1111

sdk/python/kubeflow/training/models/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
Python SDK for Kubeflow Training # noqa: E501
88
9-
The version of the OpenAPI document: v1.9.0
9+
The version of the OpenAPI document: v1.9.1
1010
Generated by: https://openapi-generator.tech
1111
"""
1212

sdk/python/kubeflow/training/models/kubeflow_org_v1_elastic_policy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Python SDK for Kubeflow Training # noqa: E501
77
8-
The version of the OpenAPI document: v1.9.0
8+
The version of the OpenAPI document: v1.9.1
99
Generated by: https://openapi-generator.tech
1010
"""
1111

sdk/python/kubeflow/training/models/kubeflow_org_v1_jax_job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Python SDK for Kubeflow Training # noqa: E501
77
8-
The version of the OpenAPI document: v1.9.0
8+
The version of the OpenAPI document: v1.9.1
99
Generated by: https://openapi-generator.tech
1010
"""
1111

0 commit comments

Comments
 (0)