Skip to content

Pin scipy to python 3.8 compatible version #56

Pin scipy to python 3.8 compatible version

Pin scipy to python 3.8 compatible version #56

Workflow file for this run

jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.8, 3.9]
steps:
- uses: actions/checkout@v1
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Installation
run:
|
python -m pip install --upgrade pip
pip install cython
pip install numpy
python3 setup.py install
pip install -e .[dev,test]
- name: Test
run: pytest
name: nucleus
on: [push]