Require funcsigs>=1.0 on Python 2.7

Fix #4815
This commit is contained in:
Bruno Oliveira 2019-02-24 12:11:08 -03:00
parent 63e7f8e340
commit ede6387caa
2 changed files with 2 additions and 1 deletions

View File

@ -0,0 +1 @@
``funcsigs>=1.0`` is now required for Python 2.7.

View File

@ -13,7 +13,7 @@ INSTALL_REQUIRES = [
'more-itertools>=4.0.0,<6.0.0;python_version<="2.7"',
'more-itertools>=4.0.0;python_version>"2.7"',
"atomicwrites>=1.0",
'funcsigs;python_version<"3.0"',
'funcsigs>=1.0;python_version<"3.0"',
'pathlib2>=2.2.0;python_version<"3.6"',
'colorama;sys_platform=="win32"',
]