Merge pull request #2825 from gabknight/NF_initial_direction #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Optional Deps | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
concurrency: | |
group: build-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pip: | |
uses: ./.github/workflows/test_template.yml | |
with: | |
runs-on: '["ubuntu-latest", "macos-latest", "windows-latest"]' | |
extra-depends: scikit_learn pandas statsmodels tables scipy | |
conda: | |
uses: ./.github/workflows/test_template.yml | |
with: | |
runs-on: '["macos-latest", "windows-latest"]' | |
install-type: '["conda"]' | |
depends: cython!=0.29.29 numpy==1.25.0 matplotlib h5py nibabel cvxpy tqdm | |
extra-depends: scikit-learn pandas statsmodels pytables scipy==1.10.1 |