Skip to content

Commit

Permalink
Make sure only the conda forge channel is used in scipy install.
Browse files Browse the repository at this point in the history
  • Loading branch information
moorepants committed Feb 11, 2023
1 parent 1bd1629 commit a294da3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ jobs:
- name: Test with pytest and scipy
if: matrix.ipopt-version == '3.12'
run: |
conda install -q -y cython>=0.26 "ipopt=${{ matrix.ipopt-version }}" numpy>=1.15 pkg-config>=0.29.2 setuptools>=39.0 pytest>=3.3.2 "scipy<1.9"
conda install -q -y -c conda-forge cython>=0.26 "ipopt=${{ matrix.ipopt-version }}" numpy>=1.15 pkg-config>=0.29.2 setuptools>=39.0 pytest>=3.3.2 "scipy<1.9"
conda list
pytest
- name: Test with pytest and scipy, new ipopt
if: matrix.ipopt-version != '3.12'
run: |
conda install -q -y cython>=0.26 "ipopt=${{ matrix.ipopt-version }}" numpy>=1.15 pkg-config>=0.29.2 setuptools>=39.0 pytest>=3.3.2 scipy>=0.19.0
conda install -q -y -c conda-forge cython>=0.26 "ipopt=${{ matrix.ipopt-version }}" numpy>=1.15 pkg-config>=0.29.2 setuptools>=39.0 pytest>=3.3.2 scipy>=0.19.0
conda list
pytest

0 comments on commit a294da3

Please sign in to comment.