Skip to content

Commit

Permalink
use numpy<2 for older version of h5py
Browse files Browse the repository at this point in the history
  • Loading branch information
t20100 committed Apr 11, 2024
1 parent fdd322e commit f516649
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,19 @@ jobs:
- name-suffix: "wheel-h5py_3.10.0"
os: ubuntu-latest
python-version: '3.12'
OLDEST_DEPENDENCIES: 'h5py==3.10.0'
OLDEST_DEPENDENCIES: 'h5py==3.10.0' 'numpy<2'

- name-suffix: "wheel-h5py_2.10.0"
os: macos-latest
python-version: '3.7.16'
OLDEST_DEPENDENCIES: 'h5py==2.10.0'
OLDEST_DEPENDENCIES: 'h5py==2.10.0 numpy<2'
env:
MACOSX_DEPLOYMENT_TARGET: 10.15

- name-suffix: "wheel-h5py_3.8.0"
os: macos-latest
python-version: '3.10.8'
OLDEST_DEPENDENCIES: 'h5py==3.8.0'
OLDEST_DEPENDENCIES: 'h5py==3.8.0 numpy<2'

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ jobs:
python-version: ['3.7', '3.12']
include:
- python-version: '3.7'
OLDEST_DEPENDENCIES: 'h5py==2.8.0'
OLDEST_DEPENDENCIES: 'h5py==2.8.0 numpy<2'
- python-version: '3.12'
OLDEST_DEPENDENCIES: 'h5py==3.10.0'
OLDEST_DEPENDENCIES: 'h5py==3.10.0 numpy<2'

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit f516649

Please sign in to comment.