safety
safety copied to clipboard
Bug: Supported Python versions not specified in pip-readable way
Description
The safety package does not specify the supported Python versions in a pip-readable way.
There are Trove classifiers that suggest the current version requires Python >=3.6, but that is not used by Pip.
Solution: Specify the python_requires parameter to setup().
@yeisonvargasf
It turns out that the setup.cfg file already had the pyton_requires attribute, but in the wrong section.
I have created PR #485 to fix that. Please review and merge.