Skip to content

Commit

Permalink
Various fix
Browse files Browse the repository at this point in the history
  • Loading branch information
masfaraud committed Oct 7, 2018
1 parent e8657a3 commit e766e61
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion bms/blocks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@

from bms.blocks.continuous import *
from bms.blocks.nonlinear import *
from bms.blocks.simplified_blocks import *
2 changes: 1 addition & 1 deletion bms/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ def PlotVariables(self, subplots_variables=None):
axs[isub].grid()

plt.xlabel('Time')
fig.show()
plt.show()

def DrawModel(self):
from .interface import ModelDrawer
Expand Down
1 change: 0 additions & 1 deletion bms/signals/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-

from bms.signals.functions import *
from bms.signals.simplified_signals import *
from bms.signals.wltp import *
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ def readme():
license = 'Creative Commons Attribution-Share Alike license',
packages = ['bms', 'bms.blocks', 'bms.signals', 'bms.physical'],
package_dir = {'bms': 'bms'},
install_requires = ['numpy', 'matplotlib>=2.0', 'networkx', 'dill'],
install_requires = ['numpy', 'matplotlib>=2.0', 'networkx>=2.0', 'dill'],
classifiers = ['Topic :: Scientific/Engineering', 'Development Status :: 3 - Alpha'])

0 comments on commit e766e61

Please sign in to comment.