Skip to content

Commit b3351db

Browse files
committed
Jupyter Enterprise Gateway 1.1.0 release
1 parent de4c31f commit b3351db

File tree

6 files changed

+17
-18
lines changed

6 files changed

+17
-18
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ SA:=source activate
77
ENV:=enterprise-gateway-dev
88
SHELL:=/bin/bash
99

10-
VERSION:=1.1.0.dev0
10+
VERSION:=1.1.0
1111

1212
WHEEL_FILE:=dist/jupyter_enterprise_gateway-$(VERSION)-py2.py3-none-any.whl
1313
WHEEL_FILES:=$(shell find . -type f ! -path "./build/*" ! -path "./etc/*" ! -path "./docs/*" ! -path "./.git/*" ! -path "./.idea/*" ! -path "./dist/*" ! -path "./.image-enterprise-gateway" ! -path "./.image-nb2kg" ! -path "./.image-yarn-spark" )

docs/source/getting-started-client-mode.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ EG_REMOTE_HOSTS=elyra-node-1.fyre.ibm.com,elyra-node-2.fyre.ibm.com,elyra-node-3
2929
**Configuring Kernels for YARN Client mode**
3030

3131
For each supported Jupyter Kernel, we have provided sample kernel configurations and launchers as part of the release
32-
[e.g. jupyter_enterprise_gateway_kernelspecs-1.0.0.tar.gz](https://github.com/jupyter-incubator/enterprise_gateway/releases/download/v1.0.0/jupyter_enterprise_gateway_kernelspecs-1.0.0.tar.gz).
32+
[e.g. jupyter_enterprise_gateway_kernelspecs-1.1.0.tar.gz](https://github.com/jupyter-incubator/enterprise_gateway/releases/download/v1.1.0/jupyter_enterprise_gateway_kernelspecs-1.1.0.tar.gz).
3333

3434
Considering we would like to enable the iPython Kernel that comes pre-installed with Anaconda to run on
3535
Yarn Client mode, we would have to copy the sample configuration folder **spark_python_yarn_client**
3636
to where the Jupyter kernels are installed (e.g. jupyter kernelspec list)
3737

3838
``` Bash
39-
wget https://github.com/jupyter-incubator/enterprise_gateway/releases/download/v1.0.0/enterprise_gateway_kernelspecs.tar.gz
39+
wget https://github.com/jupyter-incubator/enterprise_gateway/releases/download/v1.1.0/enterprise_gateway_kernelspecs.tar.gz
4040

4141
SCALA_KERNEL_DIR="$(jupyter kernelspec list | grep -w "python3" | awk '{print $2}')"
4242

docs/source/getting-started-cluster-mode.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ EG_YARN_ENDPOINT=http://${YARN_RESOURCE_MANAGER_FQDN}:8088/ws/v1/cluster #Common
2020
**Configuring Kernels for YARN Cluster mode**
2121

2222
For each supported Jupyter Kernel, we have provided sample kernel configurations and launchers as part of the release
23-
[e.g. jupyter_enterprise_gateway_kernelspecs-1.0.0.tar.gz](https://github.com/jupyter-incubator/enterprise_gateway/releases/download/v1.0.0/jupyter_enterprise_gateway_kernelspecs-1.0.0.tar.gz).
23+
[e.g. jupyter_enterprise_gateway_kernelspecs-1.1.0.tar.gz](https://github.com/jupyter-incubator/enterprise_gateway/releases/download/v1.1.0/jupyter_enterprise_gateway_kernelspecs-1.1.0.tar.gz).
2424

2525
Considering we would like to enable the iPython Kernel that comes pre-installed with Anaconda to run on Yarn Cluster mode, we
2626
would have to copy the sample configuration folder **spark_python_yarn_cluster** to where the Jupyter kernels are installed
2727
(e.g. jupyter kernelspec list)
2828

2929
``` Bash
30-
wget https://github.com/jupyter-incubator/enterprise_gateway/releases/download/v1.0.0/enterprise_gateway_kernelspecs.tar.gz
30+
wget https://github.com/jupyter-incubator/enterprise_gateway/releases/download/v1.1.0/enterprise_gateway_kernelspecs.tar.gz
3131

3232
SCALA_KERNEL_DIR="$(jupyter kernelspec list | grep -w "python3" | awk '{print $2}')"
3333

docs/source/getting-started-kernels.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The following kernels have been tested with the Jupyter Enterprise Gateway:
88
* R/Apache Spark 2.x with IRkernel
99

1010
We provide sample kernel configuration and launcher tar files as part of [each release](https://github.com/jupyter-incubator/enterprise_gateway/releases)
11-
(e.g. [jupyter_enterprise_gateway_kernelspecs-1.0.0.tar.gz](https://github.com/jupyter-incubator/enterprise_gateway/releases/download/v1.0.0/jupyter_enterprise_gateway_kernelspecs-1.0.0.tar.gz))
11+
(e.g. [jupyter_enterprise_gateway_kernelspecs-1.1.0.tar.gz](https://github.com/jupyter-incubator/enterprise_gateway/releases/download/v1.1.0/jupyter_enterprise_gateway_kernelspecs-1.1.0.tar.gz))
1212
that can be extracted and modified to fit your configuration.
1313

1414
Please find below more details on specific kernels:
@@ -39,15 +39,15 @@ we would have to copy the sample configuration folder **spark_scala_yarn_client*
3939
(e.g. jupyter kernelspec list)
4040

4141
``` Bash
42-
wget https://github.com/jupyter-incubator/enterprise_gateway/releases/download/v1.0.0/jupyter_enterprise_gateway_kernelspecs-1.0.0.tar.gz
42+
wget https://github.com/jupyter-incubator/enterprise_gateway/releases/download/v1.1.0/jupyter_enterprise_gateway_kernelspecs-1.1.0.tar.gz
4343

4444
SCALA_KERNEL_DIR="$(jupyter kernelspec list | grep -w "spark_scala" | awk '{print $2}')"
4545

4646
KERNELS_FOLDER="$(dirname "${SCALA_KERNEL_DIR}")"
4747

48-
tar -zxvf jupyter_enterprise_gateway_kernelspecs-1.0.0.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_scala_yarn_cluster/ spark_scala_yarn_cluster/
48+
tar -zxvf jupyter_enterprise_gateway_kernelspecs-1.1.0.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_scala_yarn_cluster/ spark_scala_yarn_cluster/
4949

50-
tar -zxvf jupyter_enterprise_gateway_kernelspecs-1.0.0.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_scala_yarn_client/ spark_scala_yarn_client/
50+
tar -zxvf jupyter_enterprise_gateway_kernelspecs-1.1.0.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_scala_yarn_client/ spark_scala_yarn_client/
5151

5252
cp $KERNELS_FOLDER/spark_scala/lib/*.jar $KERNELS_FOLDER/spark_scala_yarn_cluster/lib
5353
```
@@ -69,15 +69,15 @@ we would have to copy the sample configuration folder **spark_python_yarn_client
6969
(e.g. jupyter kernelspec list)
7070

7171
``` Bash
72-
wget https://github.com/jupyter-incubator/enterprise_gateway/releases/download/v1.0.0/jupyter_enterprise_gateway_kernelspecs-1.0.0.tar.gz
72+
wget https://github.com/jupyter-incubator/enterprise_gateway/releases/download/v1.1.0/jupyter_enterprise_gateway_kernelspecs-1.1.0.tar.gz
7373

7474
SCALA_KERNEL_DIR="$(jupyter kernelspec list | grep -w "spark_scala" | awk '{print $2}')"
7575

7676
KERNELS_FOLDER="$(dirname "${SCALA_KERNEL_DIR}")"
7777

78-
tar -zxvf jupyter_enterprise_gateway_kernelspecs-1.0.0.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_python_yarn_cluster/ spark_python_yarn_cluster/
78+
tar -zxvf jupyter_enterprise_gateway_kernelspecs-1.1.0.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_python_yarn_cluster/ spark_python_yarn_cluster/
7979

80-
tar -zxvf jupyter_enterprise_gateway_kernelspecs-1.0.0.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_python_yarn_client/ spark_python_yarn_client/
80+
tar -zxvf jupyter_enterprise_gateway_kernelspecs-1.1.0.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_python_yarn_client/ spark_python_yarn_client/
8181
```
8282

8383
For more information about the iPython kernel, please visit the [iPython kernel](http://ipython.readthedocs.io/en/stable/) page.
@@ -117,15 +117,15 @@ we would have to copy the sample configuration folder **spark_R_yarn_client** an
117117
(e.g. jupyter kernelspec list)
118118

119119
``` Bash
120-
wget https://github.com/jupyter-incubator/enterprise_gateway/releases/download/v1.0.0/jupyter_enterprise_gateway_kernelspecs-1.0.0.tar.gz
120+
wget https://github.com/jupyter-incubator/enterprise_gateway/releases/download/v1.1.0/jupyter_enterprise_gateway_kernelspecs-1.1.0.tar.gz
121121

122122
SCALA_KERNEL_DIR="$(jupyter kernelspec list | grep -w "spark_scala" | awk '{print $2}')"
123123

124124
KERNELS_FOLDER="$(dirname "${SCALA_KERNEL_DIR}")"
125125

126-
tar -zxvf jupyter_enterprise_gateway_kernelspecs-1.0.0.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_R_yarn_cluster/ spark_R_yarn_cluster/
126+
tar -zxvf jupyter_enterprise_gateway_kernelspecs-1.1.0.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_R_yarn_cluster/ spark_R_yarn_cluster/
127127

128-
tar -zxvf jupyter_enterprise_gateway_kernelspecs-1.0.0.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_R_yarn_client/ spark_R_yarn_client/
128+
tar -zxvf jupyter_enterprise_gateway_kernelspecs-1.1.0.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_R_yarn_client/ spark_R_yarn_client/
129129
```
130130

131131
For more information about the iR kernel, please visit the [iR kernel](https://irkernel.github.io/) page.

docs/source/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ latest Python version (currently Python 2.7 and Python 3.6).
5252
* Install the version of Anaconda which you downloaded, following the instructions on the download
5353
page.
5454

55-
* Install the latest version of Jupyter Enterprise Gateway from [PyPI](https://pypi.python.org/pypi/jupyter_enterprise_gateway/1.0.0)
55+
* Install the latest version of Jupyter Enterprise Gateway from [PyPI](https://pypi.python.org/pypi/jupyter_enterprise_gateway/1.1.0)
5656
using `pip`(part of Anaconda) along with its dependencies.
5757

5858
```bash

enterprise_gateway/_version.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
version_info = (
77
1,
88
1,
9-
0,
10-
'dev0'
9+
0
1110
)
1211

1312
__version__ = '.'.join(map(str, version_info))

0 commit comments

Comments
 (0)