From 51944423c4c37c860af847d2a4945b4d6ca71fa9 Mon Sep 17 00:00:00 2001 From: mmcky Date: Tue, 31 Aug 2021 11:42:50 +1000 Subject: [PATCH] FIX: windows execution checks due to anaconda issue --- .github/workflows/execution.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/execution.yml b/.github/workflows/execution.yml index 1b804667..042987ae 100644 --- a/.github/workflows/execution.yml +++ b/.github/workflows/execution.yml @@ -50,8 +50,12 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install Anaconda + Dependencies shell: powershell + # numba and llvmlite have issues on latest anaconda install for windows + # https://github.com/numba/llvmlite/issues/650#issuecomment-865287766 run: | conda install anaconda + conda install -c numba numba + conda install -c numba llvmlite pip install jupyter-book pip install jupyter-book sphinx-multitoc-numbering quantecon-book-theme sphinxext-rediraffe sphinx_tojupyter - name: Build Lectures (+ Execution Checks)