diff --git a/README.md b/README.md index 3990942fd..ac0fa321e 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,8 @@ PyPI Version - - npm Version + + npm Version Kale CI Workflow Status @@ -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 diff --git a/backend/setup.py b/backend/setup.py index e6ec7f59e..e0aa4f9b1 100644 --- a/backend/setup.py +++ b/backend/setup.py @@ -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', diff --git a/docker/jupyterlab/Dockerfile b/docker/jupyterlab/Dockerfile index d79cd83c4..41e98007f 100644 --- a/docker/jupyterlab/Dockerfile +++ b/docker/jupyterlab/Dockerfile @@ -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 diff --git a/docker/jupyterlab/Dockerfile.rok b/docker/jupyterlab/Dockerfile.rok index 402ec75de..619d83038 100644 --- a/docker/jupyterlab/Dockerfile.rok +++ b/docker/jupyterlab/Dockerfile.rok @@ -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 diff --git a/examples/base/candies_sharing.ipynb b/examples/base/candies_sharing.ipynb index 28df691e2..046b5f49c 100644 --- a/examples/base/candies_sharing.ipynb +++ b/examples/base/candies_sharing.ipynb @@ -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))" ] }, { diff --git a/labextension/package.json b/labextension/package.json index 17e8b3437..17cdb71d3 100644 --- a/labextension/package.json +++ b/labextension/package.json @@ -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 ",