update installation note with Mac M4 #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI (old scipy) | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build and test with Docker using an older version of scipy | |
run: | | |
docker build --tag scispacy . | |
docker run --rm scispacy bash -c "pip install 'scipy<1.11' && pytest tests/" |