Skip to content

Commit

Permalink
Adds workaround to CI for windows and py3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
fakufaku committed Feb 9, 2023
1 parent 76f8b96 commit 2f1dcf2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Workaround for windows and python 3.7
if: matrix.os == 'windows-latest' && python-version == 3.7
run: |
pip install netCDF4<=1.5.8
# There is no binary package of netCF4>=1.6.0 for windows and python 3.7
# the largest supported version is 1.5.8
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Lint with flake8
run: |
Expand Down

0 comments on commit 2f1dcf2

Please sign in to comment.