Skip to content

Commit

Permalink
Fix release workflow: add quotes around numpy<2
Browse files Browse the repository at this point in the history
  • Loading branch information
t20100 committed Apr 12, 2024
1 parent 0db0310 commit d9ddd8c
Showing 1 changed file with 2 additions and 2 deletions.
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 numpy<2'
OLDEST_DEPENDENCIES: 'h5py==2.8.0 "numpy<2"'
- python-version: '3.12'
OLDEST_DEPENDENCIES: 'h5py==3.10.0 numpy<2'
OLDEST_DEPENDENCIES: 'h5py==3.10.0 "numpy<2"'

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

0 comments on commit d9ddd8c

Please sign in to comment.