Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,12 @@ jobs:
pip install coveralls

# Install python-control dependencies
# use conda-forge until https://github.com/numpy/numpy/issues/20233 is resolved
conda install -c conda-forge numpy matplotlib scipy
conda install numpy matplotlib scipy
if [[ '${{matrix.slycot}}' == 'conda' ]]; then
conda install -c conda-forge slycot
fi
if [[ '${{matrix.pandas}}' == 'conda' ]]; then
conda install -c conda-forge pandas
conda install pandas
fi

- name: Test with pytest
Expand Down