Skip to content

lock numpy version

lock numpy version #16

Workflow file for this run

name: build
on:
push:
branches: [ "main", "test_build_env" ]
pull_request:
branches: [ "main", "test_build_env" ]
workflow_dispatch:
jobs:
build:
runs-on:
group: LargerInstance
env:
DANDI_API_KEY: ${{ secrets.DANDI_API_KEY }}
TESTING: True
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Upgrading pip
run: pip install --upgrade pip
- name: Installing package
run: pip install -e .
- name: Installing build dependencies
run: |
pip install markupsafe
pip install jupyter
pip install -U jupyter-book
pip install nbmake
pip install pytest-xdist
- name: Printing environment
run: pip freeze
- name: Testing Embargoed Notebooks
run: pytest --nbmake --nbmake-timeout=8000 -n=auto "./docs/embargoed/cell_matching.ipynb"
- name: Printing log
run: git status
- name: Printing shortlog
run: git log | git shortlog -sn
- name: Build Jupyter book
run: |
jupyter-book clean ./docs
jupyter-book build ./docs