Skip to content

Commit 96db7dd

Browse files
committed
temporarily install matplolib and ipywidgets in pylit workflow
1 parent 7592ada commit 96db7dd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/pylint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
- run: |
2222
python -m pip install --upgrade pip
2323
pip install pylint pytest nbqa nbconvert
24+
pip install pylint pytest matplotlib ipywidgets # TEMPORARY! TODO #75
2425
pip install -e .
2526
- run: pylint --unsafe-load-any-extension=y --disable=fixme,no-member,trailing-newlines,missing-module-docstring,missing-class-docstring,missing-function-docstring,unnecessary-pass $(git ls-files '*.py')
2627
- run: nbqa pylint --unsafe-load-any-extension=y --disable=fixme,no-member,wrong-import-position,trailing-whitespace,missing-function-docstring,missing-module-docstring $(git ls-files '*.ipynb')

examples/widgets_playground.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"outputs": [],
1919
"source": [
2020
"import subprocess\n",
21-
"for package in ('ipywidgets', 'matplotlib'):\n",
21+
"for package in ('ipywidgets', 'matplotlib', 'ipympl'):\n",
2222
" subprocess.check_call([sys.executable, \"-m\", \"pip\", \"install\", \"--quiet\", package])"
2323
]
2424
},

0 commit comments

Comments
 (0)