Skip to content

Commit

Permalink
Fix test install step
Browse files Browse the repository at this point in the history
  • Loading branch information
znicholls committed Jan 20, 2021
1 parent 372d2fd commit d3eda05
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci-cd-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d3eda05

Please sign in to comment.