From 7d9234b0740556e424377c7174a9527d63709773 Mon Sep 17 00:00:00 2001 From: Richard Fung Date: Tue, 12 Oct 2021 15:52:55 -0700 Subject: [PATCH 1/2] increase version of IPython to 7.19.0 for Notebooks --- ubuntu/python/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu/python/Dockerfile b/ubuntu/python/Dockerfile index a9af7b9..5b37fbd 100644 --- a/ubuntu/python/Dockerfile +++ b/ubuntu/python/Dockerfile @@ -17,7 +17,7 @@ RUN virtualenv -p python3.8 --system-site-packages /databricks/python3 RUN /databricks/python3/bin/pip install \ six==1.15.0 \ # downgrade ipython to maintain backwards compatibility with 7.x and 8.x runtimes - ipython==7.4.0 \ + ipython==7.19.0 \ numpy==1.19.2 \ pandas==1.2.4 \ pyarrow==4.0.0 \ From 051022dff791df9aa18f6dfd075ca6ef8b9a6b7e Mon Sep 17 00:00:00 2001 From: Richard Fung Date: Mon, 15 Nov 2021 11:13:08 -0800 Subject: [PATCH 2/2] update comment --- ubuntu/python/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu/python/Dockerfile b/ubuntu/python/Dockerfile index 5b37fbd..dd496f1 100644 --- a/ubuntu/python/Dockerfile +++ b/ubuntu/python/Dockerfile @@ -16,7 +16,7 @@ RUN virtualenv -p python3.8 --system-site-packages /databricks/python3 # Versions are intended to reflect DBR 9.0 RUN /databricks/python3/bin/pip install \ six==1.15.0 \ - # downgrade ipython to maintain backwards compatibility with 7.x and 8.x runtimes + # ensure minimum ipython version for Python autocomplete with jedi 0.17.x ipython==7.19.0 \ numpy==1.19.2 \ pandas==1.2.4 \