summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Quast <contact@jeffquast.com>2015-02-14 16:44:58 -0800
committerJeff Quast <contact@jeffquast.com>2015-02-14 16:44:58 -0800
commit983798b20960aef3cfc25bbe8fd965516bcfac0b (patch)
tree9758af481d20d7682b77f5259a2503a3711da9a3
parent61e714590810edb9339bb9805630ddb7b8c74000 (diff)
downloadpexpect-git-983798b20960aef3cfc25bbe8fd965516bcfac0b.tar.gz
Begin __version__ "4.0.dev"
as suggested by @takluyver in https://github.com/pexpect/pexpect/issues/174
-rw-r--r--pexpect/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pexpect/__init__.py b/pexpect/__init__.py
index 8346b5f..163bfae 100644
--- a/pexpect/__init__.py
+++ b/pexpect/__init__.py
@@ -71,7 +71,7 @@ from .utils import split_command_line, which, is_executable_file
from .pty_spawn import spawn, spawnu, PY3
from .expect import Expecter, searcher_re, searcher_string
-__version__ = '3.3'
+__version__ = '4.0.dev'
__revision__ = ''
__all__ = ['ExceptionPexpect', 'EOF', 'TIMEOUT', 'spawn', 'spawnu', 'run', 'runu',
'which', 'split_command_line', '__version__', '__revision__']