Description
I don't use tox directly, or even close to indirectly, but a lot of packages that I depend on (awscli, for example) do. I also know that I shouldn't be using Python 3.4, but some of the software I maintain unfortunately does. On December 6, the package "colorama" dropped support for Python 3.4, and my new deploys are failing because of this. This package (tox) uses colorama >= 0.4.1 in setup.cfg, and because colorama 0.4.3 no longer supports Python 3.4, neither does anything else dependent on it.
Now, I might be totally wrong on all of this, but this is the only thing I can come up with as a reason why colorama is being installed from my requirements.txt file. Regardless, can you either change it to colorama == 0.4.1 in setup.cfg, or do something else to continue maintaining support for Python 3.4 for the time being? Thanks!