Skip to content

Commit

Permalink
Update upper bound on kubernetes constraint in Python SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlatchford committed Sep 8, 2021
1 parent 5c2b529 commit 8d1b233
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions sdk/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
* Load v1 and v2 component yaml into v2 ComponentSpec and convert v1 component
spec to v2 component spec [\#6497](https://github.com/kubeflow/pipelines/issues/6497)
* Format all Python files under SDK folder. [\#6501](https://github.com/kubeflow/pipelines/issues/6501)
* Update upper bound on kubernetes constraint in Python SDK. [\#6532](https://github.com/kubeflow/pipelines/pull/6532)

## Documentation Updates

Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ docstring-parser>=0.7.3,<1
# kfp.dsl
PyYAML>=5.3,<6
jsonschema>=3.0.1,<4
kubernetes>=8.0.0,<13
kubernetes>=8.0.0,<19

# kfp.Client
kfp-server-api>=1.1.2,<2.0.0
Expand Down
3 changes: 2 additions & 1 deletion sdk/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#
# pip-compile requirements.in
#

absl-py==0.11.0
# via -r requirements.in
attrs==20.3.0
Expand Down Expand Up @@ -68,7 +69,7 @@ kfp-pipeline-spec==0.1.9
# via -r requirements.in
kfp-server-api==1.3.0
# via -r requirements.in
kubernetes==12.0.1
kubernetes==18.20.0
# via -r requirements.in
oauthlib==3.1.0
# via requests-oauthlib
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
# `Blob.from_string` was introduced in google-cloud-storage 1.20.0
# https://github.com/googleapis/python-storage/blob/master/CHANGELOG.md#1200
'google-cloud-storage>=1.20.0,<2',
'kubernetes>=8.0.0,<13',
'kubernetes>=8.0.0,<19',
# google-api-python-client v2 doesn't work for private dicovery by default:
# https://github.com/googleapis/google-api-python-client/issues/1225#issuecomment-791058235
'google-api-python-client>=1.7.8,<2',
Expand Down

0 comments on commit 8d1b233

Please sign in to comment.