Skip to content
This repository has been archived by the owner on Sep 2, 2023. It is now read-only.

Commit

Permalink
examples pipeline: test against python3.8 & python3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
fphammerle committed Feb 22, 2021
1 parent aafafa0 commit 0e41b54
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/python.yml
Expand Up @@ -138,8 +138,8 @@ jobs:
- 3.5
- 3.6
- 3.7
#- 3.8 TODO
#- 3.9 TODO
- 3.8
- 3.9
fail-fast: false
defaults:
run:
Expand All @@ -153,6 +153,9 @@ jobs:
- run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
env:
PYTHON_VERSION: ${{ matrix.python-version }}
# > RuntimeError: module compiled against API version 0xe but this version of numpy is 0xd
- run: python3 -c 'import sys; sys.exit(sys.version_info >= (3, 8))'
|| pipenv run pip install --no-deps numpy==1.20.1
- run: pipenv graph
# > the default behaviour is to abort conversion [...] if one of the cells throws an error
- run: pipenv run jupyter nbconvert --execute --inplace *.ipynb
Expand Down

0 comments on commit 0e41b54

Please sign in to comment.