Skip to content

Commit

Permalink
Implemented #1540: Officially support Python 3.9 stdlib imports by de…
Browse files Browse the repository at this point in the history
…fault.
  • Loading branch information
timothycrosley committed Oct 8, 2020
1 parent c175b9c commit 092bdb1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -20,6 +20,7 @@ Find out more about isort's release policy [here](https://pycqa.github.io/isort/
- Fixed #1523: in rare cases isort can ignore direct from import if as import is also on same line.

Potentially breaking changes:
- Implemented #1540: Officially support Python 3.9 stdlib imports by default.
- Fixed #1443: Incorrect third vs first party categorization - namespace packages.
- Fixed #1486: "Google" profile is not quite Google style.
- Fixed "PyCharm" profile to always add 2 lines to be consistent with what PyCharm "Optimize Imports" does.
Expand Down
4 changes: 2 additions & 2 deletions isort/stdlibs/py3.py
@@ -1,3 +1,3 @@
from . import py35, py36, py37, py38
from . import py35, py36, py37, py38, py39

stdlib = py35.stdlib | py36.stdlib | py37.stdlib | py38.stdlib
stdlib = py35.stdlib | py36.stdlib | py37.stdlib | py38.stdlib | py39.stdlib

0 comments on commit 092bdb1

Please sign in to comment.