Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
 - try moving Cython and numpy to pip installed versions
  • Loading branch information
mattpitkin authored May 17, 2024
1 parent 4b95ae4 commit fa2bbec
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
python-version: [3.9, "3.10", "3.11"]
include:
- os: ubuntu-20.04
condainstall: "cython numpy pip pytest setuptools"
condainstall: "pip pytest setuptools"
- os: ubuntu-22.04
condainstall: "cython numpy pip pytest setuptools"
condainstall: "pip pytest setuptools"
- os: windows-latest
condainstall: "c-compiler cython gsl numpy pip pytest setuptools"
condainstall: "c-compiler gsl pip pytest setuptools"
- os: macos-latest
condainstall: "c-compiler 'clang>=12.0.1' cython gsl numpy pip pytest setuptools"
condainstall: "c-compiler 'clang>=12.0.1' gsl pip pytest setuptools"
runs-on: ${{ matrix.os }}
defaults:
run:
Expand All @@ -44,6 +44,7 @@ jobs:
- name: Install dependencies
run: |
mamba install -n test -q -y ${{ matrix.condainstall }}
python -m pip install Cython numpy
- name: Conda information
run: |
conda info --all
Expand Down

0 comments on commit fa2bbec

Please sign in to comment.