Skip to content

Commit 0da06d0

Browse files
authored
Merge pull request #350 from DiODeProject/update-notebook
Unpin package dependencies
2 parents 16ebb62 + 7550bd6 commit 0da06d0

3 files changed

Lines changed: 6 additions & 7 deletions

File tree

mumot/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
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')
2525
from matplotlib import pyplot as plt
2626
from sympy.parsing.latex import parse_latex
2727

mumot/views.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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))

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@
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': [

0 commit comments

Comments
 (0)