Skip to content
Open
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
14 changes: 13 additions & 1 deletion Pearcleaner/Views/DevelopmentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ struct EnvironmentCleanerView: View {

// Add workspace storage cleaner for certain IDEs
let workspaceIDEs = ["VS Code", "Cursor", "Zed"]
let packageManagers = ["Pip"]
let packageManagers = ["Python"]

if workspaceIDEs.contains(selectedEnvironment.name) {
WorkspaceStorageCleanerView(ideName: selectedEnvironment.name)
Expand Down Expand Up @@ -1671,6 +1671,18 @@ struct PathLibrary {
"~/.pyenv/",
"~/.pyenv/cache/"
]),
PathEnv(name: "Python", paths: [
"/usr/bin/python3", // interpreter: system
"/usr/local/bin/python*", // interpreters: python.org
"/opt/homebrew/bin/python*", // interpreters: homebrew
"~/.local/bin/python*", // interpreters: uv
"~/.local/share/virtualenvs/**/bin/python", // environments: pipenv
"~/Library/Caches/pypoetry/virtualenvs/**/bin/python", // environments: poetry
"~/.pyenv/versions/**/bin/python", // environments: pyenv
"~/.virtualenvs/**/bin/python", // environments: virtualenvwrapper
"~/anaconda3/envs/**/bin/python", // environments: anaconda
"~/miniconda3/envs/**/bin/python", // environments: miniconda
]),
PathEnv(name: "Ruby Gems", paths: [
"~/.gem/",
"~/.gem/ruby/*/"
Expand Down