diff options
author | Rahul P | 2020-08-08 19:16:28 +0530 |
---|---|---|
committer | GitHub | 2020-08-08 19:16:28 +0530 |
commit | 8255c72075ab3541e8b6cfa7facb4e016157a905 (patch) | |
tree | e86226cc6a609e54133b527ad71912996360722b /conf.py | |
parent | 175208c2553bde875968a9bc53176b6039ba9360 (diff) | |
parent | 7871e58975d75eb2b02928f7a48d29113bebeb2b (diff) | |
download | eSim-8255c72075ab3541e8b6cfa7facb4e016157a905.tar.gz eSim-8255c72075ab3541e8b6cfa7facb4e016157a905.tar.bz2 eSim-8255c72075ab3541e8b6cfa7facb4e016157a905.zip |
Merge pull request #156 from rahulp13/master
ported GUI to PyQt5; platform independent paths; launch ngspice through mintty on Win OS
Diffstat (limited to 'conf.py')
-rw-r--r-- | conf.py | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -17,17 +17,17 @@ import sys sys.path.insert(0, os.path.abspath('./src')) # added so that do not need to install them at runtime -autodoc_mock_imports = ["PyQt4", "pathmagic", "matplotlib", "numpy"] +autodoc_mock_imports = ["PyQt5", "pathmagic", "matplotlib", "numpy"] # -- Project information ----------------------------------------------------- project = u'eSim' -copyright = u'2020, Fossee' -author = u'Fossee' +copyright = u'2020, FOSSEE' +author = u'FOSSEE, IIT Bombay' # The short X.Y version -version = u'' +version = u'2.1' # The full version, including alpha/beta/rc tags -release = u'2.0.0' +release = u'2.1.0' # -- General configuration --------------------------------------------------- |