Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #2457 make jupyter a dev only dependency #2846

Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ autograd >= 1.2
scikit-fem >= 0.2.0
casadi >= 3.5.0
imageio>=2.9.0
jupyter # For example notebooks
pybtex>=0.24.0
sympy >= 1.8
bpx
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def compile_KLU():
"scikit-fem>=0.2.0",
"casadi>=3.5.0",
"imageio>=2.9.0",
"jupyter", # For example notebooks
"importlib-metadata",
"pybtex>=0.24.0",
"sympy>=1.8",
"bpx",
Expand All @@ -218,6 +218,7 @@ def compile_KLU():
"dev": [
"pre-commit", # For code style checking
"black", # For code style auto-formatting
"jupyter", # For example notebooks
],
},
entry_points={
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ deps =
doctests: sphinx-copybutton
doctests: myst-parser
!windows-!mac: scikits.odes
examples: jupyter # For example notebooks

commands =
tests-!windows-!mac: sh -c "pybamm_install_jax" # install jax, jaxlib for ubuntu
Expand Down