-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support latest Python versions, drop Python 2 #10
Comments
Need to triage this at project planning, we may want to remain backwards compatible for legacy users. |
So to enable pylint and black automatically on commits and PRs for python-documentcloud we have some choices to make. We use one f string in python-documentcloud thus far: Which needs to either be converted to a Python 2 compatible string and we need to add f string checks to be added as an exemption in our .pylintrc file, or we need to convert all of these strings to f strings and drop support for Python2. ************* Module documentcloud.sections Your code has been rated at 9.11/10 (previous run: 9.11/10, +0.00) |
Python 2.7 was removed from python-versions on GitHub Actions this past May, so we cannot run tests automatically on Python 2 anymore. |
I've got a draft of this going here: |
Python 2 has been dead for a bit and the current version is 3.12. This library says it supports Python 2.7 to 3.8.
The text was updated successfully, but these errors were encountered: