Skip to content

Commit

Permalink
release kfp-kubernetes 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
connor-mccarthy committed Apr 11, 2024
1 parent bcaf5b7 commit a614144
Show file tree
Hide file tree
Showing 7 changed files with 311 additions and 23 deletions.
12 changes: 7 additions & 5 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
version: 2
sphinx:
configuration: docs/conf.py
python:
install:
- requirements: docs/requirements.txt
configuration: kubernetes_platform/python/docs/conf.py
build:
os: ubuntu-22.04
tools:
python: "3.7"
python: "3.8"
python:
install:
- requirements: kubernetes_platform/python/docs/requirements.txt
- method: pip
path: kubernetes_platform/python/
1 change: 0 additions & 1 deletion kubernetes_platform/.gitignore

This file was deleted.

13 changes: 0 additions & 13 deletions kubernetes_platform/python/docs/.readthedocs.yml

This file was deleted.

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

Large diffs are not rendered by default.

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

0 comments on commit a614144

Please sign in to comment.