Skip to content
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

Remove site-packages from packages search tree #723

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# **Upcoming release**

- Remove site-packages from packages search tree (@tkrabel)

# Release 1.11.0

- #710, #561 Implement `except*` syntax (@lieryan)
Expand Down
2 changes: 1 addition & 1 deletion rope/contrib/autoimport/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def get_package_tuple(
"""
package_name = package_path.name
package_type: PackageType
if package_name.startswith(".") or package_name == "__pycache__":
if package_name.startswith(".") or package_name in ["__pycache__", "site-packages"]:
return None
if package_name.endswith((".egg-info", ".dist-info")):
return None
Expand Down
Loading