Closed TomTranter closed 3 years ago
I've seen some packages have badges that list the compatible python versions...might be helpful.
It seems that adding a badge is as easy as generating a link using this website: https://shields.io/category/platform-support
It only requires defining supported Python versions in setup.py
as:
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Also, it won't generate a badge until the next release (it looks up pypi
for such info).
I just added the OS and Python version description to setup.py, but it won't appear until our next release.
TODO: Before the next release, make sure to add the badge to README. TODO: also, tidy up setup.py using https://setuptools.readthedocs.io/en/latest/userguide/package_discovery.html
This has been added to the readme in the new_examples
branch
A student of mine tried running in 3.6 and couldn't import. Probably want to update the website. Thanks