Skip to content

Update numpy requirement from <2.0,>=1.20 to >=1.20,<3.0 (#48) #351

Update numpy requirement from <2.0,>=1.20 to >=1.20,<3.0 (#48)

Update numpy requirement from <2.0,>=1.20 to >=1.20,<3.0 (#48) #351

name: Unit Tests - MacOS
on: [ push ]
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
# python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip install .[test]
- name: Run unit tests
run: |
./ci/run_tests.sh