diff options
author | Chih-Hsuan Yen <yan12125@gmail.com> | 2018-02-24 00:26:49 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-24 00:26:49 +0800 |
commit | d1ecf9df9431397e5e7e6fee58c7b04c6f37a44b (patch) | |
tree | 90fe6c6ea6f90ec910e6ed79c19561a0c92c5ba1 | |
parent | 8ef2539426235bfee53b438813716bf28dffa209 (diff) | |
download | mitmproxy-d1ecf9df9431397e5e7e6fee58c7b04c6f37a44b.tar.gz mitmproxy-d1ecf9df9431397e5e7e6fee58c7b04c6f37a44b.tar.bz2 mitmproxy-d1ecf9df9431397e5e7e6fee58c7b04c6f37a44b.zip |
Explicitly declare pyperclip requirement
pyperclip version 1.6.0 introduces an API change: the class `pyperclip.exceptions.PyperclipException` is moved to `pyperclip.PyperclipException`. As mitmproxy uses the latter, it's better to explicitly declare the requirement.
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -75,7 +75,7 @@ setup( "pyasn1>=0.3.1,<0.5", "pyOpenSSL>=17.5,<17.6", "pyparsing>=2.1.3, <2.3", - "pyperclip>=1.5.22, <1.7", + "pyperclip>=1.6.0, <1.7", "requests>=2.9.1, <3", "ruamel.yaml>=0.13.2, <0.16", "sortedcontainers>=1.5.4, <1.6", |