Skip to content

Commit

Permalink
update server and sdk version to 0.1.37 (#2701)
Browse files Browse the repository at this point in the history
* update server and sdk version to 0.1.37

* update api package version to latest

* fix test error
  • Loading branch information
hongye-sun authored Dec 5, 2019
1 parent a68feed commit 1b04983
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions manifests/kustomize/base/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ bases:

images:
- name: gcr.io/ml-pipeline/api-server
newTag: 0.1.36
newTag: 0.1.37
- name: gcr.io/ml-pipeline/persistenceagent
newTag: 0.1.36
newTag: 0.1.37
- name: gcr.io/ml-pipeline/scheduledworkflow
newTag: 0.1.36
newTag: 0.1.37
- name: gcr.io/ml-pipeline/frontend
newTag: 0.1.36
newTag: 0.1.37
- name: gcr.io/ml-pipeline/viewer-crd-controller
newTag: 0.1.36
newTag: 0.1.37
- name: gcr.io/ml-pipeline/inverse-proxy-agent
newTag: 0.1.36
newTag: 0.1.37
- name: gcr.io/ml-pipeline/visualization-server
newTag: 0.1.36
newTag: 0.1.37
2 changes: 1 addition & 1 deletion sdk/python/kfp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '0.1.36'
__version__ = '0.1.37'

from . import components
from . import containers
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/kfp/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def run_pipeline(self, experiment_id, job_name, pipeline_package_path=None, para
value=str(v)) for k,v in params.items()]
key = kfp_server_api.models.ApiResourceKey(id=experiment_id,
type=kfp_server_api.models.ApiResourceType.EXPERIMENT)
reference = kfp_server_api.models.ApiResourceReference(key, kfp_server_api.models.ApiRelationship.OWNER)
reference = kfp_server_api.models.ApiResourceReference(key=key, relationship=kfp_server_api.models.ApiRelationship.OWNER)
spec = kfp_server_api.models.ApiPipelineSpec(
pipeline_id=pipeline_id,
workflow_manifest=pipeline_json_string,
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
'google-auth>=1.6.1',
'requests_toolbelt>=0.8.0',
'cloudpickle==1.1.1',
'kfp-server-api >= 0.1.18, <= 0.1.25', #Update the upper version whenever a new version of the kfp-server-api package is released. Update the lower version when there is a breaking change in kfp-server-api.
'kfp-server-api >= 0.1.18, <= 0.1.37', #Update the upper version whenever a new version of the kfp-server-api package is released. Update the lower version when there is a breaking change in kfp-server-api.
'argo-models == 2.2.1a', #2.2.1a is equivalent to argo 2.2.1
'jsonschema >= 3.0.1',
'tabulate == 0.8.3',
Expand Down

0 comments on commit 1b04983

Please sign in to comment.