Skip to content

Commit

Permalink
Merge 1bb8507 into 2addff0
Browse files Browse the repository at this point in the history
  • Loading branch information
jpgill86 committed Jul 14, 2019
2 parents 2addff0 + 1bb8507 commit 9c01b61
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion neurotic/gui/standalone.py
Expand Up @@ -8,7 +8,7 @@

import quantities as pq
import elephant
from ephyviewer import QT
from ephyviewer import QT, QT_MODE

from .. import __version__
from ..datasets import MetadataSelector, LoadAndPrepareData, selector_labels
Expand Down Expand Up @@ -305,6 +305,12 @@ def show_about(self):
Display the "About neurotic" message box
"""

import elephant
import ephyviewer
import neo
import numpy
import pyqtgraph

title = 'About neurotic'

urls = {}
Expand All @@ -327,6 +333,16 @@ def show_about(self):
<p>Please post any questions, problems, comments, <br/>
or suggestions in the <a href='{urls['GitHub issues']}'>GitHub issue
tracker</a>.</p>
<p>Installed dependencies:</p>
<table width='80%' align='center'>
<tr><td>elephant</td> <td>{elephant.__version__}</td></tr>
<tr><td>ephyviewer</td> <td>{ephyviewer.__version__}</td></tr>
<tr><td>neo</td> <td>{neo.__version__}</td></tr>
<tr><td>numpy</td> <td>{numpy.__version__}</td></tr>
<tr><td>{QT_MODE.lower()}</td> <td>{QT.PYQT_VERSION_STR}</td></tr>
<tr><td>pyqtgraph</td> <td>{pyqtgraph.__version__}</td></tr>
</table>
"""

QT.QMessageBox.about(self, title, text)
Expand Down

0 comments on commit 9c01b61

Please sign in to comment.