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

chore(sdk): release kfp-kubernetes 1.2.0 #10692

Merged
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
9 changes: 8 additions & 1 deletion kubernetes_platform/python/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,19 @@ def decorator(func):
'version_dropdown':
True,
'version_info': [
{
'version':
'https://kfp-kubernetes.readthedocs.io/en/kfp-kubernetes-1.2.0/',
'title':
'1.2.0',
'aliases': ['stable'],
},
{
'version':
'https://kfp-kubernetes.readthedocs.io/en/kfp-kubernetes-1.1.0/',
'title':
'1.1.0',
'aliases': ['stable'],
'aliases': [],
},
{
'version':
Expand Down
4 changes: 2 additions & 2 deletions kubernetes_platform/python/kfp/kubernetes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '1.1.0'
__version__ = '1.2.0'

__all__ = [
'add_ephemeral_volume',
Expand Down Expand Up @@ -45,7 +45,7 @@
from kfp.kubernetes.secret import use_secret_as_volume
from kfp.kubernetes.timeout import set_timeout
from kfp.kubernetes.toleration import add_toleration
from kfp.kubernetes.volume import add_ephemeral_volume
from kfp.kubernetes.volume import CreatePVC
from kfp.kubernetes.volume import DeletePVC
from kfp.kubernetes.volume import mount_pvc
from kfp.kubernetes.volume import add_ephemeral_volume
2 changes: 1 addition & 1 deletion kubernetes_platform/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
NAME = 'kfp-kubernetes'
REQUIREMENTS = [
'protobuf>=4.21.1,<5',
'kfp>=2.6.0',
'kfp>=2.6.0,<3',
]
DEV_REQUIREMENTS = [
'docformatter==1.4',
Expand Down