Feature request: Ship isort 5
See original GitHub issueI was trying out
"python.sortImports.args": [
"--profile",
"black",
],
today, which promises better compatibility between isort
and black
. However, it seems that the extension ships with an older version of isort
that does not support these flags.
user@host:~/.vscode-server/extensions/ms-python.python-2020.6.91350/pythonFiles/lib/python/isort> grep version __init__.py
__version__ = "4.3.21"
Even worse, adding these flags leads to endless “Saving xyz.py
: Applying code action ‘Sort imports’.”
Shipping isort>=5
should solve this.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:4
- Comments:10 (1 by maintainers)
Top Results From Across the Web
Feature Requests: How to Collect Them and Engage Users in ...
Feature requests are an important window into your customers desires and priorities. ... 5 ways to prioritize feature requests.
Read more >How to Track Feature Requests: Detailed Guide in 2022 (Free ...
Feature requests tracking & management is a five-step process that includes: Asking for feedback or having a way to collect incoming feedback ...
Read more >Feature Requests - CircleCI Discuss
Topic Replies Views Activity
About the Feature Requests category 1 3586 October 7, 2015
Windows support 2 7221 June 18, 2018
Sort the Projects list 2...
Read more >How to Handle Customer Feature Requests [with Examples]
1. Identify your feature request sources · 2. Centralize your requests in a single place · 3. Respond personally and politely · 4....
Read more >Throne Gifts
Welcome to Throne's feature request page! ... Folders or tabs to sort your wishlist items with (Collections!) Feature ... No shipping fees on...
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
Next release will have the new isort
Yup, that’s correct regarding the workaround. If
isort>=5
has fixed the Windows stdin issue on its own then that workaround can be dropped. (I don’t tend to develop on Windows, so haven’t tested that). It was thevscode-python
CI which originally found the issue, so if the CI is happy everything should be fine.