8000 update python-package-conda workflow to use conda instead of conda-forge · python-control/python-control@e5a7d82 · GitHub
[go: up one dir, main page]

Skip to content

Commit e5a7d82

Browse files
committed
update python-package-conda workflow to use conda instead of conda-forge
1 parent 865ba02 commit e5a7d82

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,12 @@ jobs:
3838
pip install coveralls
3939
4040
# Install python-control dependencies
41-
# use conda-forge until https://github.com/numpy/numpy/issues/20233 is resolved
42-
conda install -c conda-forge numpy matplotlib scipy
41+
conda install numpy matplotlib scipy
4342
if [[ '${{matrix.slycot}}' == 'conda' ]]; then
4443
conda install -c conda-forge slycot
4544
fi
4645
if [[ '${{matrix.pandas}}' == 'conda' ]]; then
47-
conda install -c conda-forge pandas
46+
conda install pandas
4847
fi
4948
5049
- name: Test with pytest

0 commit comments

Comments
 (0)
0