We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58b1bc5 commit 86959e3Copy full SHA for 86959e3
1 file changed
.github/workflows/python-package-conda.yml
@@ -50,15 +50,15 @@ jobs:
50
- name: Install optional dependencies
51
shell: bash -l {0}
52
run: |
53
+ if [[ '${{matrix.cvxopt}}' == 'conda' ]]; then
54
+ mamba install cvxopt
55
+ fi
56
if [[ '${{matrix.slycot}}' == 'conda' ]]; then
57
mamba install slycot
58
fi
59
if [[ '${{matrix.pandas}}' == 'conda' ]]; then
60
mamba install pandas
61
- if [[ '${{matrix.cvxopt}}' == 'conda' ]]; then
- mamba install cvxopt
- fi
62
63
- name: Test with pytest
64
0 commit comments