Skip to content

Commit

Permalink
Version bump to 0.5
Browse files Browse the repository at this point in the history
Signed-off-by: Stefano Fioravanzo <[email protected]>
Reviewed-by: Ilias Katsakioris <[email protected]>
  • Loading branch information
Stefano Fioravanzo authored and elikatsis committed Jun 15, 2020
1 parent 56f9e5e commit 1fa5c29
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<a target="_blank" href="https://pypi.org/project/kubeflow-kale/">
<img alt="PyPI Version" src="https://badgen.net/pypi/v/kubeflow-kale">
</a>
<a target="_blank" href="https://www.npmjs.com/package/kubeflow-kale-launcher">
<img alt="npm Version" src="https://badgen.net/npm/v/kubeflow-kale-launcher">
<a target="_blank" href="https://www.npmjs.com/package/kubeflow-kale-labextension">
<img alt="npm Version" src="https://badgen.net/npm/v/kubeflow-kale-labextension">
</a>
<a target="_blank" href="https://github.com/kubeflow-kale/kale/actions">
<img alt="Kale CI Workflow Status" src="https://github.com/kubeflow-kale/kale/workflows/CI/badge.svg">
Expand Down Expand Up @@ -53,7 +53,7 @@ pip install kubeflow-kale
pip install "jupyterlab<2.0.0"

# install the extension
jupyter labextension install kubeflow-kale-launcher
jupyter labextension install kubeflow-kale-labextension
# verify extension status
jupyter labextension list

Expand Down
2 changes: 1 addition & 1 deletion backend/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name='kubeflow-kale',
version='0.4.0',
version='0.5.0',
description='Convert JupyterNotebooks to Kubeflow Pipelines deployments',
url='https://github.com/kubeflow-kale/kale',
author='Stefano Fioravanzo',
Expand Down
2 changes: 1 addition & 1 deletion docker/jupyterlab/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN pip3 install --upgrade pip && \
pip3 install --upgrade "jupyterlab<2.0.0" && \
pip3 install https://storage.googleapis.com/ml-pipeline/release/latest/kfp.tar.gz --upgrade && \
pip3 install -U kubeflow-kale && \
jupyter labextension install kubeflow-kale-launcher
jupyter labextension install kubeflow-kale-labextension

RUN echo "jovyan ALL=(ALL:ALL) NOPASSWD:ALL" > /etc/sudoers.d/jovyan
WORKDIR /home/jovyan
Expand Down
2 changes: 1 addition & 1 deletion docker/jupyterlab/Dockerfile.rok
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ RUN pip3 install --upgrade pip && \
pip3 install --upgrade "jupyterlab<2.0.0" && \
pip3 install https://storage.googleapis.com/ml-pipeline/release/latest/kfp.tar.gz --upgrade && \
pip3 install -U kubeflow-kale && \
jupyter labextension install kubeflow-kale-launcher
jupyter labextension install kubeflow-kale-labextension

RUN echo "jovyan ALL=(ALL:ALL) NOPASSWD:ALL" > /etc/sudoers.d/jovyan
WORKDIR /home/jovyan
Expand Down
2 changes: 1 addition & 1 deletion examples/base/candies_sharing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"\n",
"This notebook presents a minimal example to show how Kale can convert a Notebook to a pipeline applying Notebook annotations.\n",
"\n",
"Variables that are constant throughout the Notebook are transformed into pipeline parameters, so that the pipeline can be re-run with different initializations. Code cells are divided into pipeline steps by mean of notebook tags. You can look at the annotations by inspecting the Notebook source, or by installing the Kale jupyter extension (see [github.com/kubeflow-kale/jupyterlab-kubeflow-kale](https://github.com/kubeflow-kale/jupyterlab-kubeflow-kale))"
"Variables that are constant throughout the Notebook are transformed into pipeline parameters, so that the pipeline can be re-run with different initializations. Code cells are divided into pipeline steps by mean of notebook tags. You can look at the annotations by inspecting the Notebook source, or by installing the Kale jupyter extension (see [github.com/kubeflow-kale/kale](https://github.com/kubeflow-kale/kale))"
]
},
{
Expand Down
10 changes: 5 additions & 5 deletions labextension/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "kubeflow-kale-launcher",
"version": "1.4.0",
"description": "Deployment interface for Kubeflow Pipelines.",
"name": "kubeflow-kale-labextension",
"version": "0.5.0",
"description": "Convert Notebooks to Kubeflow pipelines with Kale",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/kubeflow-kale/jupyterlab-kubeflow-kale",
"homepage": "https://github.com/kubeflow-kale/kale",
"bugs": {
"url": "https://github.com/kubeflow-kale/jupyterlab-kubeflow-kale/issues"
"url": "https://github.com/kubeflow-kale/kale/issues"
},
"license": "BSD-3-Clause",
"author": "Stefano Fioravanzo <[email protected]>",
Expand Down

0 comments on commit 1fa5c29

Please sign in to comment.