Skip to content

Commit

Permalink
Pin the colorama version only for Python 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nightlark authored and nicoddemus committed Dec 14, 2019
1 parent 1deb60f commit 53b0873
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion changelog/6340.trivial.rst

This file was deleted.

1 change: 1 addition & 0 deletions changelog/6345.trivial.rst
@@ -0,0 +1 @@
Pin ``colorama`` to ``0.4.1`` only for Python 3.4 so newer Python versions can still receive colorama updates.
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -13,7 +13,8 @@
"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",
Expand Down

0 comments on commit 53b0873

Please sign in to comment.