Skip to content

Commit

Permalink
fix: adds openpyxl to nox notebooks session
Browse files Browse the repository at this point in the history
  • Loading branch information
BradyPlanden committed Aug 19, 2024
1 parent 6f226bd commit 6a43506
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
"metadata": {},
"outputs": [],
"source": [
"%pip install --upgrade pip ipywidgets\n",
"%pip install --upgrade pip ipywidgets -q\n",
"%pip install pybop -q\n",
"%pip install pandas --upgrade\n",
"%pip install openpyxl"
"%pip install openpyxl\n",
"%pip install pandas --upgrade"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"source": [
"%pip install --upgrade pip ipywidgets\n",
"%pip install pybop -q\n",
"%pip install pandas --upgrade\n",
"%pip install openpyxl"
"%pip install openpyxl\n",
"%pip install pandas --upgrade"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def examples(session):
@nox.session
def notebooks(session):
"""Run the Jupyter notebooks."""
session.install("setuptools", "wheel")
session.install("setuptools", "wheel", "openpyxl")
session.install("-e", ".[all,dev]", silent=False)
if PYBOP_SCHEDULED:
session.run("pip", "install", f"pybamm=={PYBAMM_VERSION}", silent=False)
Expand Down

0 comments on commit 6a43506

Please sign in to comment.