diff --git a/.authors.yml b/.authors.yml index b61a182123e..3dc34faabff 100644 --- a/.authors.yml +++ b/.authors.yml @@ -1957,7 +1957,7 @@ first_commit: 2016-12-11 16:14:03 - name: Ken Odegard email: kodegard@anaconda.com - num_commits: 554 + num_commits: 558 first_commit: 2016-09-27 18:04:21 github: kenodegard aliases: diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ad87a4913b..a8b4a8be5cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ [//]: # (current developments) +## 23.7.3 (2023-08-21) + +### Bug fixes + +* Fix regression for supporting conda executable plugins installed into non-base environments. (#13006) + +### Contributors + +* @kenodegard + + + ## 23.7.2 (2023-07-27) ### Bug fixes diff --git a/conda/cli/find_commands.py b/conda/cli/find_commands.py index 41da532e54e..22adb34558d 100644 --- a/conda/cli/find_commands.py +++ b/conda/cli/find_commands.py @@ -58,6 +58,8 @@ def find_commands(include_others=True): else: dir_paths = [] + dir_paths.extend(os.environ.get("PATH", "").split(os.pathsep)) + if on_win: pat = re.compile(r"conda-([\w\-]+)\.(exe|bat)$") else: