Skip to content

Commit 2f1dcf2

Browse files
committed
Adds workaround to CI for windows and py3.7
1 parent 76f8b96 commit 2f1dcf2

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/pythonpackage.yml

+8
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ jobs:
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip
30+
- name: Workaround for windows and python 3.7
31+
if: matrix.os == 'windows-latest' && python-version == 3.7
32+
run: |
33+
pip install netCDF4<=1.5.8
34+
# There is no binary package of netCF4>=1.6.0 for windows and python 3.7
35+
# the largest supported version is 1.5.8
36+
- name: Install dependencies
37+
run: |
3038
pip install -r requirements.txt
3139
- name: Lint with flake8
3240
run: |

0 commit comments

Comments
 (0)