Skip to content

Commit

Permalink
Implemented #1697: Provisional support for PEP 582: skip directories …
Browse files Browse the repository at this point in the history
…by default.
  • Loading branch information
timothycrosley committed Mar 24, 2021
1 parent a07bdf3 commit dbd5a9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -4,8 +4,9 @@ Changelog
NOTE: isort follows the [semver](https://semver.org/) versioning standard.
Find out more about isort's release policy [here](https://pycqa.github.io/isort/docs/major_releases/release_policy/).

### TBD
### 5.9.0 TBD
- Fixed (https://github.com/PyCQA/isort/pull/1695) added imports being added to doc string in some cases.
- Implemented #1697: Provisional support for PEP 582: skip `__pypackages__` directories by default.

### 5.8.0 March 20th 2021
- Fixed #1631: as import comments can in some cases be duplicated.
Expand Down
1 change: 1 addition & 0 deletions isort/settings.py
Expand Up @@ -68,6 +68,7 @@
".pants.d",
".direnv",
"node_modules",
"__pypackages__",
}
)

Expand Down

0 comments on commit dbd5a9e

Please sign in to comment.