diff options
author | Thomas Kluyver | 2014-07-01 18:18:45 -0700 |
---|---|---|
committer | Thomas Kluyver | 2014-07-01 18:18:45 -0700 |
commit | 87aad44f14e8a5b27e913cb907abe68a67097b68 (patch) | |
tree | 950e73b634b2c8d3b55f547bcaad2b0af54a094f | |
parent | d7f79edb8c167fab983426f5fa8456429741573a (diff) | |
download | scilab_kernel-87aad44f14e8a5b27e913cb907abe68a67097b68.tar.gz scilab_kernel-87aad44f14e8a5b27e913cb907abe68a67097b68.tar.bz2 scilab_kernel-87aad44f14e8a5b27e913cb907abe68a67097b68.zip |
Version 0.2
-rw-r--r-- | bash_kernel.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bash_kernel.py b/bash_kernel.py index 14720ff..00cc795 100644 --- a/bash_kernel.py +++ b/bash_kernel.py @@ -5,7 +5,7 @@ import signal from subprocess import check_output import re -__version__ = '0.1' +__version__ = '0.2' version_pat = re.compile(r'version (\d+(\.\d+)+)') @@ -17,7 +17,7 @@ if svem_flag in sys.argv: sys.argv.remove(svem_flag) setup(name='bash_kernel', - version='0.1', + version='0.2', description='A bash kernel for IPython', long_description=readme, author='Thomas Kluyver', |