From 61a52a95d1b3611c47961bba40a0a9126cf3b43b Mon Sep 17 00:00:00 2001 From: maximlt Date: Thu, 28 Oct 2021 10:34:31 +0200 Subject: [PATCH 1/6] install param --- binder/environment.yaml | 1 + binder/postBuild | 1 + 2 files changed, 2 insertions(+) create mode 100644 binder/postBuild diff --git a/binder/environment.yaml b/binder/environment.yaml index b5549ce13..fcc4961e2 100644 --- a/binder/environment.yaml +++ b/binder/environment.yaml @@ -5,3 +5,4 @@ dependencies: - python=3.9.7 - aiohttp=3.7.4 - panel=0.12.2 + - pip diff --git a/binder/postBuild b/binder/postBuild new file mode 100644 index 000000000..dee8b9cc1 --- /dev/null +++ b/binder/postBuild @@ -0,0 +1 @@ +pip install . From 86bc3080734052c40a85d60ea9c07e175ab3b0c2 Mon Sep 17 00:00:00 2001 From: maximlt Date: Thu, 28 Oct 2021 10:39:18 +0200 Subject: [PATCH 2/6] rename the env file --- binder/{environment.yaml => environment.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename binder/{environment.yaml => environment.yml} (100%) diff --git a/binder/environment.yaml b/binder/environment.yml similarity index 100% rename from binder/environment.yaml rename to binder/environment.yml From 3f405df245c9dd0c2002c5be4f003b9b6e15432d Mon Sep 17 00:00:00 2001 From: maximlt Date: Thu, 28 Oct 2021 10:39:28 +0200 Subject: [PATCH 3/6] uninstall param installed with panel --- binder/postBuild | 1 + 1 file changed, 1 insertion(+) diff --git a/binder/postBuild b/binder/postBuild index dee8b9cc1..edf9ac416 100644 --- a/binder/postBuild +++ b/binder/postBuild @@ -1 +1,2 @@ +pip uninstall param pip install . From aea7bc003b959feaf75bddc0dac710f6bb2d0317 Mon Sep 17 00:00:00 2001 From: maximlt Date: Thu, 28 Oct 2021 10:49:48 +0200 Subject: [PATCH 4/6] update panel version --- binder/environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binder/environment.yml b/binder/environment.yml index fcc4961e2..7b11d8a51 100644 --- a/binder/environment.yml +++ b/binder/environment.yml @@ -4,5 +4,5 @@ channels: dependencies: - python=3.9.7 - aiohttp=3.7.4 - - panel=0.12.2 + - panel=0.12.4 - pip From f72313bf4c1f5a600247b92efd86a13b30adbd0a Mon Sep 17 00:00:00 2001 From: maximlt Date: Thu, 28 Oct 2021 10:52:48 +0200 Subject: [PATCH 5/6] add pyviz channel --- binder/environment.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/binder/environment.yml b/binder/environment.yml index 7b11d8a51..122c6a0f5 100644 --- a/binder/environment.yml +++ b/binder/environment.yml @@ -1,5 +1,6 @@ name: param channels: + - pyviz - defaults dependencies: - python=3.9.7 From 27abb6dedeedb217553d6b881bcee2fed66c9ecb Mon Sep 17 00:00:00 2001 From: maximlt Date: Thu, 28 Oct 2021 10:57:19 +0200 Subject: [PATCH 6/6] fix pip command --- binder/postBuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binder/postBuild b/binder/postBuild index edf9ac416..1c34ddec1 100644 --- a/binder/postBuild +++ b/binder/postBuild @@ -1,2 +1,2 @@ -pip uninstall param +pip uninstall param --yes pip install .