Merge pull request #4822 from nicoddemus/funcsigs

Require funcsigs>=1.0 on Python 2.7
This commit is contained in:
Anthony Sottile 2019-02-24 09:14:09 -08:00 committed by GitHub
commit c9e69438b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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,<6.0.0;python_version<="2.7"',
'more-itertools>=4.0.0;python_version>"2.7"', 'more-itertools>=4.0.0;python_version>"2.7"',
"atomicwrites>=1.0", "atomicwrites>=1.0",
'funcsigs;python_version<"3.0"', 'funcsigs>=1.0;python_version<"3.0"',
'pathlib2>=2.2.0;python_version<"3.6"', 'pathlib2>=2.2.0;python_version<"3.6"',
'colorama;sys_platform=="win32"', 'colorama;sys_platform=="win32"',
] ]