We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79f329b commit db36410Copy full SHA for db36410
.github/workflows/ci_tests.yaml
@@ -45,11 +45,14 @@ jobs:
45
# python-version: 3.7
46
# isDraft: true
47
# Pair Python 3.7 with NumPy 1.17 and Python 3.9 with NumPy 1.20
48
+ # Only install optional packages on Python 3.9/NumPy 1.20
49
include:
50
- python-version: 3.7
51
numpy-version: '1.17'
52
+ optional-packages: ''
53
- python-version: 3.9
54
numpy-version: '1.20'
55
+ optional-packages: 'ipython'
56
defaults:
57
run:
58
shell: bash -l {0}
@@ -89,7 +92,8 @@ jobs:
89
92
conda install -c conda-forge/label/dev gmt=6.2.0rc1
90
93
conda install numpy=${{ matrix.numpy-version }} \
91
94
pandas xarray netCDF4 packaging \
- codecov coverage[toml] dvc ipython make \
95
+ ${{ matrix.optional-packages }} \
96
+ codecov coverage[toml] dvc make \
97
pytest-cov pytest-mpl pytest>=6.0 \
98
sphinx-gallery
99
0 commit comments