Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update training operator sdk version to 1.5.0 #1651

Merged
merged 16 commits into from
Aug 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hack/python-sdk/swagger_config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"packageName" : "kubeflow.training",
"projectName" : "training",
"packageVersion": "1.4.0",
"packageVersion": "1.5.0",
"importMappings": {
"V1Container": "from kubernetes.client import V1Container",
"V1ObjectMeta": "from kubernetes.client import V1ObjectMeta",
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/kubeflow/training/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from __future__ import absolute_import

__version__ = "1.4.0"
__version__ = "1.5.0"

# import apis into sdk package

Expand Down
2 changes: 1 addition & 1 deletion sdk/python/kubeflow/training/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'OpenAPI-Generator/1.4.0/python'
self.user_agent = 'OpenAPI-Generator/1.5.0/python'
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/kubeflow/training/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: v1.5.0\n"\
"SDK Package Version: 1.4.0".\
"SDK Package Version: 1.5.0".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down