Skip to content

Commit

Permalink
Try updating github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
znicholls committed Jan 19, 2021
1 parent 30f1009 commit c00a990
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/ci-cd-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,13 @@ jobs:
restore-keys: |
${{ runner.os }}-pip-
# 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 test dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"Programming Language :: Python :: 3.8",
]
REQUIREMENTS_INSTALL = [
"cftime==1.3.0",
"cftime",
"pandas-datapackage-reader",
"f90nml",
"PyYAML",
Expand Down

0 comments on commit c00a990

Please sign in to comment.