summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Quast <contact@jeffquast.com>2015-04-26 13:58:05 -0700
committerJeff Quast <contact@jeffquast.com>2015-04-26 13:58:05 -0700
commit4bd7305df7a582887db7202128f285a2970aca6f (patch)
tree28906eec571640a658da6555a5c273613b0a5322
parent1ac9cb6cf63687c30e4304b134f88d0cefc5a37f (diff)
downloadpexpect-git-4bd7305df7a582887db7202128f285a2970aca6f.tar.gz
We must specify lower-bound for ptyprocess
Problem: - user installs pexpect==3.2 and ptyprocess==0.4 - change is made to ptyprocess, 0.5 is available - change is made to pexpect, 4.0 is available - user wishes to upgrade, issues "pip install --upgrade pexpect" - the current version of ptyprocess (0.4) remains installed. Solution: - Specify lowerbound '>=0.5' to ensure that existing pexpect installations receive new version of ptyprocess.
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 126749a..feb5e64 100644
--- a/setup.py
+++ b/setup.py
@@ -61,5 +61,5 @@ setup (name='pexpect',
'Topic :: System :: Software Distribution',
'Topic :: Terminals',
],
- install_requires=['ptyprocess'],
+ install_requires=['ptyprocess>=0.5'],
)