Merge pull request #4774 from sambrightman/pin-more_itertools

Constrain more_itertools for Python 2.7 compatibility
This commit is contained in:
Bruno Oliveira 2019-02-12 16:48:51 -02:00 committed by GitHub
commit 8052d01a37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -0,0 +1 @@
``more_itertools`` is now constrained to <6.0.0 when required for Python 2.7 compatibility.

View File

@ -10,7 +10,8 @@ INSTALL_REQUIRES = [
"six>=1.10.0",
"setuptools",
"attrs>=17.4.0",
"more-itertools>=4.0.0",
'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"',
'pathlib2>=2.2.0;python_version<"3.6"',