8000 CI: switch slycot and cvxopt installation order · steadymingha/python-control@86959e3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 86959e3

Browse files
committed
CI: switch slycot and cvxopt installation order
1 parent 58b1bc5 commit 86959e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/python-package-conda.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ jobs:
5050
- name: Install optional dependencies
5151
shell: bash -l {0}
5252
run: |
53+
if [[ '${{matrix.cvxopt}}' == 'conda' ]]; then
54+
mamba install cvxopt
55+
fi
5356
if [[ '${{matrix.slycot}}' == 'conda' ]]; then
5457
mamba install slycot
5558
fi
5659
if [[ '${{matrix.pandas}}' == 'conda' ]]; then
5760
mamba install pandas
5861
fi
59-
if [[ '${{matrix.cvxopt}}' == 'conda' ]]; then
60-
mamba install cvxopt
61-
fi
6262
6363
- name: Test with pytest
6464
shell: bash -l {0}

0 commit comments

Comments
 (0)
0