Python 3.10 support
See original GitHub issueIn this PR about PEP-6222 I created an experimental build of Python 3.10 that is available at this binder link. However if I install IPython using py10 -m pip install IPython
and then try to use it, eventually I get a crash. I’ll post the details in a comment below so we keep the top-level issue description simple. It would be great to track 3.10 compatibility, if possible, so we can use IPython for testing/experimenting with new features and ideas (though I realize that may be a big lift in that it’s tracking quite a moving target).
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Python 3.10 support table for most popular Python packages
Python 3.10 is a currently supported version of Python . This site shows Python 3.10 support for the 360 most downloaded packages on...
Read more >What's New In Python 3.10 — Python 3.11.1 documentation
Sequence patterns support wildcards: [x, y, *rest] and (x, y, *rest) work similar to wildcards in unpacking assignments. The name after * may...
Read more >Support Python 3.10? - General Discussion - TensorFlow Forum
Python 3.10 will be released in October 2021, so it will be supported in the next TF release after that, assuming all dependencies...
Read more >When should you upgrade to Python 3.11?
Apparently it took them 6 months post-release until they had Python 3.9 support, and 3 months after 3.10. For my own projects, some...
Read more >add python 3.10 support · Issue #69440 · pytorch ... - GitHub
Feature Add Python 3.10 support, since PyTorch only supports up to Python 3.9.9 as of the time I'm writing this.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@MrMino Maybe not necessary since the problem disappeared after re-installing Python
3.10.4
. This time when doingpip install ipython
IPython came with version0.8.0
of parso lib.Here’s an example of the crash that results from
%run test_patma.py
in the binder link above. IIt seems that something changed in the structure of exception/traceback objects. There may be other issues as well, this is just the first problem I saw.