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].
This commit is contained in:
Guangchao 2018-08-17 15:19:29 +08:00
parent a945b0cf11
commit 3f14a485d3

View File

@ -75,7 +75,7 @@ setup(
"pyOpenSSL>=17.5,<18.1", "pyOpenSSL>=17.5,<18.1",
"pyparsing>=2.1.3, <2.3", "pyparsing>=2.1.3, <2.3",
"pyperclip>=1.6.0, <1.7", "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", "sortedcontainers>=1.5.4,<2.1",
"tornado>=4.3,<5.2", "tornado>=4.3,<5.2",
"urwid>=2.0.1,<2.1", "urwid>=2.0.1,<2.1",