From 622e794fafb678de66a641b5796091a46f2c5f2e Mon Sep 17 00:00:00 2001 From: Mayo Faulkner Date: Fri, 7 Jun 2024 13:47:58 +0100 Subject: [PATCH 1/3] add widefield example --- docs_gh_pages/loading_examples.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs_gh_pages/loading_examples.rst b/docs_gh_pages/loading_examples.rst index d364cbfc..7a5c6d67 100644 --- a/docs_gh_pages/loading_examples.rst +++ b/docs_gh_pages/loading_examples.rst @@ -15,3 +15,4 @@ Below is a list of examples showing how to load different types of IBL data notebooks_external/loading_raw_ephys_data notebooks_external/loading_video_data notebooks_external/loading_raw_video_data + notebooks_external/loading_widefield_data From 0d23a0e7bc8a0a8abaa9abc7e4f18b8a5923cf56 Mon Sep 17 00:00:00 2001 From: Mayo Faulkner Date: Mon, 10 Jun 2024 12:03:23 +0100 Subject: [PATCH 2/3] pip install wfield in docs build --- .github/workflows/build_docs.yml | 1 + .github/workflows/deploy_docs.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/build_docs.yml b/.github/workflows/build_docs.yml index daa2095c..37530ee6 100644 --- a/.github/workflows/build_docs.yml +++ b/.github/workflows/build_docs.yml @@ -59,6 +59,7 @@ jobs: export TQDM_DISABLE=1 pip install -r docs_gh_pages/requirements-docs.txt pip install -e ../ibllib-repo + pip install wfield pip install jupyter - name: ONE setup and build docs diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml index 0b996082..ab706c6b 100644 --- a/.github/workflows/deploy_docs.yml +++ b/.github/workflows/deploy_docs.yml @@ -58,6 +58,7 @@ jobs: sudo apt-get install -y pandoc pip install -r docs_gh_pages/requirements-docs.txt pip install -e ../ibllib-repo + pip install wfield pip install jupyter - name: ONE setup and build docs From 0c5309be69896f1ebff352d5b7b8eb7f9ce2b441 Mon Sep 17 00:00:00 2001 From: Mayo Faulkner Date: Mon, 10 Jun 2024 14:12:55 +0100 Subject: [PATCH 3/3] git install of wfield --- .github/workflows/build_docs.yml | 2 +- .github/workflows/deploy_docs.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_docs.yml b/.github/workflows/build_docs.yml index 37530ee6..05a9ff78 100644 --- a/.github/workflows/build_docs.yml +++ b/.github/workflows/build_docs.yml @@ -59,7 +59,7 @@ jobs: export TQDM_DISABLE=1 pip install -r docs_gh_pages/requirements-docs.txt pip install -e ../ibllib-repo - pip install wfield + pip install git+https://github.com/jcouto/wfield.git pip install jupyter - name: ONE setup and build docs diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml index ab706c6b..92a5538a 100644 --- a/.github/workflows/deploy_docs.yml +++ b/.github/workflows/deploy_docs.yml @@ -58,7 +58,7 @@ jobs: sudo apt-get install -y pandoc pip install -r docs_gh_pages/requirements-docs.txt pip install -e ../ibllib-repo - pip install wfield + pip install git+https://github.com/jcouto/wfield.git pip install jupyter - name: ONE setup and build docs