Skip to content

Add type hints to main APIs #26

Add type hints to main APIs

Add type hints to main APIs #26

name: Run numpy 2<->1 compatibility
on:
pull_request:
branches:
- '*'
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-2019, windows-latest, macos-latest]
python-version: ["3.8", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run: |
pip install numpy==1.24
pip install pytest
pip install -e .
pip install -r requirements-test.txt
pytest