Skip to content

Update numpy requirement from <2.0.0,>=1.24.0 to >=1.24.0,<3.0.0 #4005

Update numpy requirement from <2.0.0,>=1.24.0 to >=1.24.0,<3.0.0

Update numpy requirement from <2.0.0,>=1.24.0 to >=1.24.0,<3.0.0 #4005

Workflow file for this run

name: Linting and Formatting
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-and-format:
name: Linting and Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files --show-diff-on-failure