From d3eda055d664f69c775000ee996c8896c3016eca Mon Sep 17 00:00:00 2001 From: Zebedee Nicholls Date: Tue, 19 Jan 2021 23:47:44 +1100 Subject: [PATCH] Fix test install step --- .github/workflows/ci-cd-workflow.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci-cd-workflow.yml b/.github/workflows/ci-cd-workflow.yml index 6001e3f3..bd98d6b1 100644 --- a/.github/workflows/ci-cd-workflow.yml +++ b/.github/workflows/ci-cd-workflow.yml @@ -205,6 +205,15 @@ jobs: uses: actions/setup-python@v1 with: python-version: ${{ matrix.python-version }} + + # no windows wheel for Python 3.6 cftime 1.3.1 + # https://github.com/Unidata/cftime/issues/224 + - name: Install cftime 1.3.0 (${{ runner.os }}) + if: startsWith(runner.os, 'Windows') && endsWith(matrix.python-version, '3.6') + run: | + pip install --upgrade --user pip wheel + pip install cftime==1.3.0 + - name: Install (${{ runner.os }}) run: | pip install --upgrade pip wheel