File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name : Test PyPI install
2- on :
3- schedule :
4- # * is a special character in YAML so you have to quote this string
5- - cron : ' 0 0 * * 3'
2+ on : push
3+ # schedule:
4+ # # * is a special character in YAML so you have to quote this string
5+ # - cron: '0 0 * * 3'
66
77jobs :
88 test-installation :
1818 uses : actions/setup-python@v1
1919 with :
2020 python-version : ${{ matrix.python-version }}
21+ # no windows wheel for Python 3.6 cftime 1.3.1
22+ # https://github.com/Unidata/cftime/issues/224
23+ - name : Install cftime 1.3.0 (${{ runner.os }})
24+ if : startsWith(runner.os, 'Windows') && endsWith(matrix.python-version, '3.6')
25+ run : |
26+ pip install --upgrade --user pip wheel
27+ pip install cftime==1.3.0
2128 - name : Install package
2229 # avoid installing pre-releases of non-scmdata packages
2330 run : |
You can’t perform that action at this time.
0 commit comments