This repository was archived by the owner on Feb 28, 2024. It is now read-only.

Description
At the moment, neither setup.py or setup.cfg contain a python_reuires lower bound, which from
|
'Programming Language :: Python :: 3.6', |
|
'Programming Language :: Python :: 3.7', |
|
'Programming Language :: Python :: 3.8'] |
seems like it should be
This is important as if later release use incompatible syntax changes pip won't know to NOT try to install those versions for older Python versions unless there is a python_requires that it can find to figure out if the Python version running it is compatible. So python_requires keeps older Python versions from getting broken releases.