colour-science / flask-compress

Compress responses of your Flask application.
MIT License
117 stars 27 forks source link

Drop support for Python 3.8 and lower #46

Closed kurtmckee closed 1 month ago

kurtmckee commented 1 month ago

This PR introduces the following changes:

Introducing python_requires in setup.py should eliminate concerns about breaking changes: there is no way for installers running on older Python versions to resolve a new release of Flask-Compress. It is invisible during automatic installation, and installation will fail if users attempt to force installation of the new release of Flask-Compress.

Therefore this could be released tomorrow as 1.16 or as 2.0 and -- to older Pythons -- it would be the same as not releasing a new version. :+1:

Closes #27