Skip to content

Fix use of deprecated scipy.minimize api. #49

Fix use of deprecated scipy.minimize api.

Fix use of deprecated scipy.minimize api. #49

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: install
run: |
python -m pip install --upgrade pip
pip install -v .[tests]
- name: run test
run: |
pytest -v tests