add nbformat to extras_require dans setup.py #25
Workflow file for this run
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: Test install | |
# Build on every branch push, tag push, and pull request change: | |
on: [push] | |
jobs: | |
build_wheels: | |
name: Build wheels on ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v3 | |
name: Install Python | |
with: | |
python-version: 3.9 | |
- name: Install | |
run: | | |
pip install . |