We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42b1028 commit 0feaa9bCopy full SHA for 0feaa9b
1 file changed
.github/workflows/ci.yml
@@ -37,11 +37,11 @@ jobs:
37
38
- name: Install netCDF4 (py38 pinned to avoid source build)
39
run: |
40
- if "${{ matrix.python-version }}" == "3.8" (
+ if ("${{ matrix.python-version }}" -eq "3.8") {
41
python -m pip install "netcdf4<1.7"
42
- ) else (
+ } else {
43
python -m pip install netcdf4
44
- )
+ }
45
46
- name: Build native extensions (in-place)
47
0 commit comments