1413 removed Python 3.7 from a list of supported Python versions. But minio-py still can be installed on Python 3.7.
If some next release introduces any change not compatible with 3.7 (e.g. walrus operator or some new typing annotations), users with this Python version should explicitly add an upper limit for package version, to avoid breaking changes.
Added python_requires to setup.py which prevents installing this package on Python below 3.8.
1413 removed Python 3.7 from a list of supported Python versions. But
minio-py
still can be installed on Python 3.7.If some next release introduces any change not compatible with 3.7 (e.g. walrus operator or some new typing annotations), users with this Python version should explicitly add an upper limit for package version, to avoid breaking changes.
Added python_requires to
setup.py
which prevents installing this package on Python below 3.8.