From 479c54d53e2ac62082520c9cf1e56dd8bb4b372e Mon Sep 17 00:00:00 2001 From: Vignesh Kothapalli Date: Sat, 24 Oct 2020 10:40:08 +0530 Subject: [PATCH 1/4] modify tfio version in notebooks --- docs/tutorials/elasticsearch.ipynb | 6 +++--- docs/tutorials/kafka.ipynb | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/tutorials/elasticsearch.ipynb b/docs/tutorials/elasticsearch.ipynb index 3daad4f4e..0ca3ddc3d 100644 --- a/docs/tutorials/elasticsearch.ipynb +++ b/docs/tutorials/elasticsearch.ipynb @@ -107,8 +107,8 @@ }, "outputs": [], "source": [ - "print(\"Installing the tensorflow-io-nightly package !\")\n", - "!pip install tensorflow-io-nightly\n", + "print(\"Installing the tensorflow-io package !\")\n", + "!pip install tensorflow-io\n", "\n", "print(\"Installing the elasticsearch package !\")\n", "!pip install elasticsearch\n" @@ -753,4 +753,4 @@ }, "nbformat": 4, "nbformat_minor": 0 -} +} \ No newline at end of file diff --git a/docs/tutorials/kafka.ipynb b/docs/tutorials/kafka.ipynb index 5c3429824..4e8967df3 100644 --- a/docs/tutorials/kafka.ipynb +++ b/docs/tutorials/kafka.ipynb @@ -103,8 +103,8 @@ }, "outputs": [], "source": [ - "print(\"Installing the tensorflow-io-nightly package !\")\n", - "!pip install tensorflow-io-nightly\n", + "print(\"Installing the tensorflow-io package !\")\n", + "!pip install tensorflow-io\n", "\n", "print(\"Installing the kafka-python package !\")\n", "!pip install kafka-python" @@ -892,4 +892,4 @@ }, "nbformat": 4, "nbformat_minor": 0 -} +} \ No newline at end of file From 1ba0c10be8c996d4d7615dc4bcff1b884034e981 Mon Sep 17 00:00:00 2001 From: Vignesh Kothapalli Date: Sat, 24 Oct 2020 10:42:40 +0530 Subject: [PATCH 2/4] lint fixes --- docs/tutorials/elasticsearch.ipynb | 2 +- docs/tutorials/kafka.ipynb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorials/elasticsearch.ipynb b/docs/tutorials/elasticsearch.ipynb index 0ca3ddc3d..0128a38c0 100644 --- a/docs/tutorials/elasticsearch.ipynb +++ b/docs/tutorials/elasticsearch.ipynb @@ -753,4 +753,4 @@ }, "nbformat": 4, "nbformat_minor": 0 -} \ No newline at end of file +} diff --git a/docs/tutorials/kafka.ipynb b/docs/tutorials/kafka.ipynb index 4e8967df3..87dad150c 100644 --- a/docs/tutorials/kafka.ipynb +++ b/docs/tutorials/kafka.ipynb @@ -892,4 +892,4 @@ }, "nbformat": 4, "nbformat_minor": 0 -} \ No newline at end of file +} From 742ea2cac0b6aa65a350d58b26b80ddd82acae5c Mon Sep 17 00:00:00 2001 From: Mark Daoust Date: Mon, 26 Oct 2020 09:45:18 -0700 Subject: [PATCH 3/4] Prefer not to mix python in into `!` cells. --- docs/tutorials/elasticsearch.ipynb | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/tutorials/elasticsearch.ipynb b/docs/tutorials/elasticsearch.ipynb index 0128a38c0..8c9c134d3 100644 --- a/docs/tutorials/elasticsearch.ipynb +++ b/docs/tutorials/elasticsearch.ipynb @@ -107,10 +107,7 @@ }, "outputs": [], "source": [ - "print(\"Installing the tensorflow-io package !\")\n", "!pip install tensorflow-io\n", - "\n", - "print(\"Installing the elasticsearch package !\")\n", "!pip install elasticsearch\n" ] }, From bc26d79fe4b9a7f2c9f73b69cbf4c2c214b122e7 Mon Sep 17 00:00:00 2001 From: Mark Daoust Date: Mon, 26 Oct 2020 09:45:48 -0700 Subject: [PATCH 4/4] Prefer not to mix python in into `!` cells. --- docs/tutorials/kafka.ipynb | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/tutorials/kafka.ipynb b/docs/tutorials/kafka.ipynb index 87dad150c..9100e748f 100644 --- a/docs/tutorials/kafka.ipynb +++ b/docs/tutorials/kafka.ipynb @@ -103,10 +103,7 @@ }, "outputs": [], "source": [ - "print(\"Installing the tensorflow-io package !\")\n", "!pip install tensorflow-io\n", - "\n", - "print(\"Installing the kafka-python package !\")\n", "!pip install kafka-python" ] },