Drop support for end-of-life versions of Python by cclauss · Pull Request #150 · python-hyper/priority
Conversation
Our GitHub Actions currently fail ❌ because ubuntu-latest no longer supports Python versions less than 3.8 so let’s drop them so that our CI tests are green. ✅
Python versions less than 3.10 are end-of-life so perhaps we should drop testing of all EoL versions of Python.
cclauss
changed the title
Python 3.6 and 3.7 are no longer available ubuntu-latest
Python 3.6 and 3.7 are no longer available on ubuntu-latest
| packages=find_packages(where="src"), | ||
| package_data={"priority": ["py.typed"]}, | ||
| package_dir={"": "src"}, | ||
| python_requires=">=3.6.1", |
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this also be bumped? if we no longer run CI tests, we should not claim it works on these Python versions.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Raise to py38 or py310?
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. Done.
| "Programming Language :: Python", | ||
| "Programming Language :: Python :: 3", | ||
| "Programming Language :: Python :: 3.6", | ||
| "Programming Language :: Python :: 3.7", |
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as above - remove these here?
cclauss
changed the title
Python 3.6 and 3.7 are no longer available on ubuntu-latest
Drop support for end-of-life versions of Python
Python versions less than 3.10 are eod-of-life. GitHub Actions `ubuntu-latest` no longer supports Python versions less than 3.8 so let’s drop them so that our CI tests are green.