We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76f8b96 commit 2f1dcf2Copy full SHA for 2f1dcf2
.github/workflows/pythonpackage.yml
@@ -27,6 +27,14 @@ jobs:
27
- name: Install dependencies
28
run: |
29
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
38
pip install -r requirements.txt
39
- name: Lint with flake8
40
0 commit comments