Skip to content
Merged
Show file tree
Hide file tree
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
39 changes: 23 additions & 16 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
run: conda install conda-build
- name: Build conda package
run: |
CHANNELS="-c conda-forge -c https://software.repos.intel.com/python/conda --override-channels"
CHANNELS="-c https://software.repos.intel.com/python/conda -c conda-forge --override-channels"
VERSIONS="--python ${{ matrix.python }}"
TEST="--no-test"

Expand Down Expand Up @@ -104,17 +104,20 @@ jobs:

test_linux:
needs: build_linux
runs-on: ${{ matrix.runner }}

runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.9", "3.10", "3.11", "3.12"]
numpy: ['1.26*']
experimental: [false]
runner: [ubuntu-latest]
continue-on-error: ${{ matrix.experimental }}
include:
- python: '3.9'
numpy: '1.26'
- python: '3.10'
numpy: '2.2'
- python: '3.11'
numpy: '2.2'
- python: '3.12'
numpy: '2.2'
env:
CHANNELS: -c conda-forge -c https://software.repos.intel.com/python/conda --override-channels
CHANNELS: -c https://software.repos.intel.com/python/conda -c conda-forge --override-channels

steps:
- name: Download artifact
Expand Down Expand Up @@ -172,17 +175,21 @@ jobs:

test_windows:
needs: build_windows
runs-on: ${{ matrix.runner }}
runs-on: windows-latest

strategy:
matrix:
python: ["3.9", "3.10", "3.11", "3.12"]
numpy: ['1.26*']
experimental: [false]
runner: [windows-latest]
continue-on-error: ${{ matrix.experimental }}
include:
- python: '3.9'
numpy: '1.26'
- python: '3.10'
numpy: '2.2'
- python: '3.11'
numpy: '2.2'
- python: '3.12'
numpy: '2.2'
env:
CHANNELS: -c conda-forge -c https://software.repos.intel.com/python/conda --override-channels
CHANNELS: -c https://software.repos.intel.com/python/conda -c conda-forge --override-channels

steps:
- name: Download artifact
Expand Down
2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ requirements:
run:
- python
- {{ pin_compatible('mkl', min_pin="x.x", max_pin="x") }}
- {{ pin_compatible('numpy', min_pin="x.x", max_pin="x") }}
- {{ pin_compatible('numpy-base', min_pin="x.x", max_pin="x") }}

test:
commands:
Expand Down
Loading