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

Unpin versions of ipykernel, notebook, pyzmq and tornado dependencies; add FAQ #398

Merged
Show file tree
Hide file tree
Changes from all 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
12 changes: 12 additions & 0 deletions docs/source/faq.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FAQ
===

Why does manipulating widgets create duplicate figures?
-------------------------------------------------------

Please update your dependencies: versions of the `ipython` dependency older than 7.10.0 are known to cause this problem.

Why are there odd line breaks after inline maths in paragraphs?
---------------------------------------------------------------

This is a known issue when using Safari; try using Chrome or Firefox instead.
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,6 @@ MuMoT (Multiscale Modelling Tool) is a tool designed to allow sophisticated math
getting_started
install
about
faq
development
api
10 changes: 5 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@ install_requires =
antlr4-python3-runtime >=4.7,<4.8
graphviz
setuptools # used with Python <3.8 for finding pkg version at runtime (with 3.8 could use importlib.metadata)
ipykernel <4.7 # needed so no duplicate figures when wiggle ipywidgets
ipython
ipykernel
ipython >=7.10.0 # minimum required to avoid creating duplicate Figures when changing ipywidget states
ipywidgets
matplotlib
networkx
notebook <5.5 # needed if using pyzmq < 17
notebook
pydstool >=0.90.3 # min version that allows scipy >= 1.0.0 to be used
pyzmq <17 # needed if using tornado < 5
pyzmq
scipy
sympy >=1.4,<1.5 # pinned to <1.5 due to Issue #377
tornado <5 # needed to avoid errors with older ipykernel
tornado
setup_requres =
setuptools_scm

Expand Down