Skip to content
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ addons:
install:
- travis_wait 50 pip install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-14.04 wxPython
- travis_wait 50 python setup.py install
- pip install PyPubSub==3.3.0 pyyaml ruamel.yaml
- pip install PyPubSub pyyaml ruamel.yaml

# command to run
script: travis_wait 20 python devsimpy.py examples/model0.dsp 10 start quit
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,19 @@ With DEVSimPy you can:

To get DEVSimPy V4.0 package with all Git submodule:
```sh
$ git clone --recurse-submodules -b version-4.0 --depth=1 https://github.com/capocchi/DEVSimPy.git .
$ git clone --recurse-submodules -b version-4.0 --depth=1 https://github.com/capocchi/DEVSimPy.git
$ git fetch --unshallow
```

DEVSimPy depends on PyPubSub version 3.3.0 (or 3.3.1), pyyaml, ruamel.yaml and modules.
All dependencies can be installed using requirements.txt file:
DEVSimPy depends on PyPubSub, pyyaml, ruamel.yaml and other packages included in the requirements.txt file.
All dependencies can be installed using pip with the requirements.txt file:
```sh
$ pip install -r requirements.txt
```
For os X users, python.app is required in order to use pythonw instead of python to execute the devismpy.py file.

For os X users, python.app is required in order to use pythonw instead of python to execute the devismpy.py file.

DEVSimPy don't require installation and works on all platforms. To execute DEVSimPy:
# Usage
To execute DEVSimPy:
```sh
$ python devsimpy.py
```
Expand Down
1 change: 1 addition & 0 deletions plugins/blink.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,5 +319,6 @@ def OnClose(self, evt):
"""
"""
self.flag = True
self.Show(False)
#self.Destroy()
evt.Skip()
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ wxPython >= 4.0.6
# SimulationGUI.py: 35
# SpreadSheet.py: 34
# devsimpy.py: 104
PyPubSub == 3.3.0
PyPubSub >= 3.3.0

# Mixins\Savable.py: 39
PyYAML >= 5.1.2
Expand Down