diff options
author | Guangchao <gwang@brandttechnologies.com> | 2018-08-17 15:19:29 +0800 |
---|---|---|
committer | Guangchao <gwang@brandttechnologies.com> | 2018-08-17 15:19:29 +0800 |
commit | 3f14a485d3e6803d6257d947f508f0eabb35fa1c (patch) | |
tree | f522c3fd5322e9ba99158a30976c2ae775d4306d | |
parent | a945b0cf1111d81e1adc2aa0239dee9389ca5711 (diff) | |
download | mitmproxy-3f14a485d3e6803d6257d947f508f0eabb35fa1c.tar.gz mitmproxy-3f14a485d3e6803d6257d947f508f0eabb35fa1c.tar.bz2 mitmproxy-3f14a485d3e6803d6257d947f508f0eabb35fa1c.zip |
Lib ruamel.yaml version 0.15.55 will caused typing.Sequence[str] unsupported in option.
Baseed on release note of recent version 0.15.55 ruamel.yaml, it unmade CommentedSeq a subclass of list.
This will cause the sequence parsed from yaml cannot be set to option whose type is typing.Sequence[str].
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -75,7 +75,7 @@ setup( "pyOpenSSL>=17.5,<18.1", "pyparsing>=2.1.3, <2.3", "pyperclip>=1.6.0, <1.7", - "ruamel.yaml>=0.13.2, <0.16", + "ruamel.yaml>=0.13.2, <0.15.55", "sortedcontainers>=1.5.4,<2.1", "tornado>=4.3,<5.2", "urwid>=2.0.1,<2.1", |