-
Notifications
You must be signed in to change notification settings - Fork 5k
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
Drop support for python 3.6, add support for 3.10 #6256
Milestone
Comments
penguinolog
added a commit
to penguinolog/notebook
that referenced
this issue
Dec 25, 2021
* Update classifiers * Update python_requires * Fix deprecated code (some from python 2.x): - `io.open` -> `open` - `IOError` -> `OSError` (in python 3 `IOError` is alias) - `socket.error` -> `OSError` - `u''` -> `''` - `str().format` -> f-strings (where it was quick automatically validated change) - `object` is not needed as base class - use `set` comprehensions - `sum` over generators (do not produce temporary lists) - use plain `super()` * remove unused imports
@penguinolog Is your commit tested and known to fix this issue? If so, can you please create a pull request? |
PR is open and waiting for merge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Since Python 3.6 is end-of-life and PR #6215 drops 3.6 from the CI matrices (while adding 3.10) we should do the same at an official compacity (updating the classifiers, etc.).
I'm assuming this is something that can be delivered within a minor release and have added a 6.5 milestone.
The text was updated successfully, but these errors were encountered: