Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
specify numpy version for each python version
  • Loading branch information
Vahid Tavanashad committed Aug 9, 2025
commit 3647624d3f680a246b8eff4b42d5a91d105b85fe
33 changes: 20 additions & 13 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,18 @@ 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 https://software.repos.intel.com/python/conda -c conda-forge --override-channels

Expand Down Expand Up @@ -172,15 +175,19 @@ 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 https://software.repos.intel.com/python/conda -c conda-forge --override-channels

Expand Down
Loading