Skip to content

Update h5py requirement from <=3.14.0 to <=3.15.0 (#1520) #5395

Update h5py requirement from <=3.14.0 to <=3.15.0 (#1520)

Update h5py requirement from <=3.14.0 to <=3.15.0 (#1520) #5395

Workflow file for this run

name: Contribution checks
on:
push:
branches:
- main
pull_request:
branches:
- main
defaults:
run:
shell: bash
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- run: pipx run ruff check .
- run: pipx run ruff format --diff .
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Codespell
uses: codespell-project/actions-codespell@v2