Constrain more_itertools for Python 2.7 compatibility
Fixes #4772, #4770.
This commit is contained in:
parent
dc8af18a0e
commit
b4be228330
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