mirror of https://github.com/pytest-dev/pytest.git
Pin the colorama version only for Python 3.4
This commit is contained in:
parent
1deb60f02f
commit
53b08730e4
|
@ -1 +0,0 @@
|
|||
Pin ``colorama`` to ``0.4.1`` as later versions no longer support Python 3.4.
|
|
@ -0,0 +1 @@
|
|||
Pin ``colorama`` to ``0.4.1`` only for Python 3.4 so newer Python versions can still receive colorama updates.
|
3
setup.py
3
setup.py
|
@ -13,7 +13,8 @@ INSTALL_REQUIRES = [
|
|||
"atomicwrites>=1.0",
|
||||
'funcsigs>=1.0;python_version<"3.0"',
|
||||
'pathlib2>=2.2.0;python_version<"3.6"',
|
||||
'colorama<=0.4.1;sys_platform=="win32"',
|
||||
'colorama<=0.4.1;sys_platform=="win32" and python_version=="3.4"',
|
||||
'colorama;sys_platform=="win32" and python_version!="3.4"',
|
||||
"pluggy>=0.12,<1.0",
|
||||
'importlib-metadata>=0.12;python_version<"3.8"',
|
||||
"wcwidth",
|
||||
|
|
Loading…
Reference in New Issue