File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020# (e.g. superfluous figures when sliders are moved).
2121# Automated testing using tox could be affected as well
2222# if default matplotlib backend is used
23- if sys .platform == "darwin" :
24- matplotlib .use ('TkAgg' )
23+ # if sys.platform == "darwin":
24+ matplotlib .use ('TkAgg' )
2525from matplotlib import pyplot as plt
2626from sympy .parsing .latex import parse_latex
2727
Original file line number Diff line number Diff line change @@ -1653,7 +1653,6 @@ def _plot_field(self) -> None:
16531653 self ._update_params ()
16541654 self ._show_computation_start ()
16551655 if not (self ._silent ): # @todo is this necessary?
1656- plt .figure (self ._figureNum )
16571656 plt .clf ()
16581657 self ._resetErrorMessage ()
16591658 self ._showErrorMessage (str (self ))
Original file line number Diff line number Diff line change 2929 install_requires = [
3030 'antlr4-python3-runtime' ,
3131 'graphviz' ,
32- 'ipykernel<4.7' , # needed so no duplicate figures when wiggle ipywidgets
32+ 'ipykernel' ,
3333 'ipython' ,
3434 'ipywidgets' ,
3535 'matplotlib' ,
3636 'networkx' ,
37- 'notebook<5.5' , # needed if using pyzmq < 17
37+ 'notebook' ,
3838 'pydstool>=0.90.3' , # min version that allows scipy >= 1.0.0 to be used
39- 'pyzmq<17' , # needed if using tornado < 5
39+ 'pyzmq' ,
4040 'scipy' ,
4141 'sympy>=1.4' ,
42- 'tornado<5' # needed to avoid errors with older ipykernel
42+ 'tornado'
4343 ],
4444 extras_require = {
4545 'test' : [
You can’t perform that action at this time.
0 commit comments