Skip to content
This repository was archived by the owner on Jun 28, 2022. It is now read-only.

Commit bf75f55

Browse files
committed
Latest release: 2.1.0-rc4
1 parent 4d8e21a commit bf75f55

File tree

12 files changed

+38
-13
lines changed

12 files changed

+38
-13
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.1.0-rc3
2+
current_version = 2.1.0-rc4
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)\-{0,1}(?P<release>\D*)(?P<build>\d*)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ In both cases, one will use it as
9595
9696
## 4 Running with docker
9797
98-
A docker image ready for working with *Jupyterlab Integration* is available from Dockerhub. It is recommended to prepare your environment by pulling the repository: `docker pull bwalter42/databrickslabs_jupyterlab:2.1.0-rc3`
98+
A docker image ready for working with *Jupyterlab Integration* is available from Dockerhub. It is recommended to prepare your environment by pulling the repository: `docker pull bwalter42/databrickslabs_jupyterlab:2.1.0-rc4`
9999
100100
There are two scripts in the folder `docker`:
101101
@@ -115,7 +115,7 @@ Alternatively, under macOS and Linux one can use the following bash functions:
115115
-v $HOME/.ssh/:/home/dbuser/.ssh \
116116
-v $HOME/.databrickscfg:/home/dbuser/.databrickscfg \
117117
-v $(pwd):/home/dbuser/notebooks \
118-
bwalter42/databrickslabs_jupyterlab:2.1.0-rc3 /opt/conda/bin/databrickslabs-jupyterlab $@
118+
bwalter42/databrickslabs_jupyterlab:2.1.0-rc4 /opt/conda/bin/databrickslabs-jupyterlab $@
119119
}
120120
```
121121
@@ -130,7 +130,7 @@ Alternatively, under macOS and Linux one can use the following bash functions:
130130
-v $HOME/.ssh/:/home/dbuser/.ssh \
131131
-v $HOME/.databrickscfg:/home/dbuser/.databrickscfg \
132132
-v $(pwd):/home/dbuser/notebooks \
133-
bwalter42/databrickslabs_jupyterlab:2.1.0-rc3 /opt/conda/bin/jupyter $@
133+
bwalter42/databrickslabs_jupyterlab:2.1.0-rc4 /opt/conda/bin/jupyter $@
134134
}
135135
```
136136
@@ -178,7 +178,7 @@ in both commands.
178178
```bash
179179
(base)$ conda create -n db-jlab21 python=3.8
180180
(base)$ conda activate db-jlab21
181-
(db-jlab)$ pip install --upgrade databrickslabs-jupyterlab==2.1.0-rc3
181+
(db-jlab)$ pip install --upgrade databrickslabs-jupyterlab==2.1.0-rc4
182182
```
183183

184184
The prefix `(db-jlab)$` for all command examples in this document assumes that the conda enviromnent `db-jlab` is activated.

databrickslabs_jupyterlab/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ def get_version(version):
1212
return VersionInfo(major, minor, patch, release, build)
1313

1414

15-
__version__ = "2.1.0-rc3" # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
15+
__version__ = "2.1.0-rc4" # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion
1616
__version_info__ = get_version(__version__)
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
channels:
2+
- defaults
3+
- conda-forge
4+
5+
# Use conda for the Jupyter lab environment
6+
dependencies:
7+
- pip
8+
# Jupyter
9+
- jupyterlab>=2.1.0,<=2.2.0
10+
- conda-forge::nodejs=10
11+
- pip:
12+
- ipywidgets==7.5.1 # \
13+
- ipykernel==5.2.1 # |
14+
- tornado==6.0.4 # > don't move to conda section to support python 3.5 (DBR 5.5)
15+
- notebook==6.0.3 # |
16+
- widgetsnbextension==3.5.1 # /
17+
- ssh-ipykernel==1.0.3
18+
- inquirer==2.6.3
19+
- pyperclip==1.7.0
20+
- version-parser==1.0.0
21+
- databricks-cli
22+
- databrickslabs_jupyterlab==2.1.0-rc4
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@jupyter-widgets/jupyterlab-manager@2.x
2+
databrickslabs-jupyterlab-statusbar@v2.0.1
3+
interrupt-ipykernel-extension@1.0.0

docker/dk-dj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ docker run -it --rm \
66
-v $HOME/.ssh/:/home/dbuser/.ssh \
77
-v $HOME/.databrickscfg:/home/dbuser/.databrickscfg \
88
-v $(pwd):/home/dbuser/notebooks \
9-
bwalter42/databrickslabs_jupyterlab:2.1.0-rc3 \
9+
bwalter42/databrickslabs_jupyterlab:2.1.0-rc4 \
1010
/opt/conda/bin/databrickslabs-jupyterlab $@

docker/dk-dj.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ docker run -it --rm ^
44
-v %HOMEDRIVE%%HOMEPATH%/.ssh/:/home/dbuser/.ssh ^
55
-v %HOMEDRIVE%%HOMEPATH%/.databrickscfg:/home/dbuser/.databrickscfg ^
66
-v %CD%:/home/dbuser/notebooks ^
7-
bwalter42/databrickslabs_jupyterlab:2.1.0-rc3 ^
7+
bwalter42/databrickslabs_jupyterlab:2.1.0-rc4 ^
88
/opt/conda/bin/databrickslabs-jupyterlab %*

docker/dk-jupyter

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ docker run -it --rm \
66
-v $HOME/.ssh/:/home/dbuser/.ssh \
77
-v $HOME/.databrickscfg:/home/dbuser/.databrickscfg \
88
-v $(pwd):/home/dbuser/notebooks \
9-
bwalter42/databrickslabs_jupyterlab:2.1.0-rc3 \
9+
bwalter42/databrickslabs_jupyterlab:2.1.0-rc4 \
1010
/opt/conda/bin/jupyter $@

docker/dk-jupyter.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ docker run -it --rm ^
44
-v %HOMEDRIVE%%HOMEPATH%/.ssh/:/home/dbuser/.ssh ^
55
-v %HOMEDRIVE%%HOMEPATH%/.databrickscfg:/home/dbuser/.databrickscfg ^
66
-v %CD%:/home/dbuser/notebooks ^
7-
bwalter42/databrickslabs_jupyterlab:2.1.0-rc3 ^
7+
bwalter42/databrickslabs_jupyterlab:2.1.0-rc4 ^
88
/opt/conda/bin/jupyter %*

docker/image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM continuumio/miniconda3
22

33
RUN . /opt/conda/bin/activate base && \
4-
/opt/conda/bin/pip install --upgrade databrickslabs-jupyterlab==2.1.0-rc3 && \
4+
/opt/conda/bin/pip install --upgrade databrickslabs-jupyterlab==2.1.0-rc4 && \
55
/opt/conda/bin/databrickslabs-jupyterlab -b && \
66
echo "cleaning" && \
77
npm install -g yarn && \

0 commit comments

Comments
 (0)