Merge pull request #4774 from sambrightman/pin-more_itertools
Constrain more_itertools for Python 2.7 compatibility
This commit is contained in:
commit
8052d01a37
|
@ -0,0 +1 @@
|
|||
``more_itertools`` is now constrained to <6.0.0 when required for Python 2.7 compatibility.
|
3
setup.py
3
setup.py
|
@ -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"',
|
||||
|
|
Loading…
Reference in New Issue