Skip to content

Commit

Permalink
Merge 24.7.x back into main (#5436)
Browse files Browse the repository at this point in the history
  • Loading branch information
kenodegard committed Aug 1, 2024
2 parents 417d3f4 + e0944e8 commit d908fe1
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .authors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,7 @@
alternate_emails:
- clee@anaconda.com
- name: Ken Odegard
num_commits: 212
num_commits: 213
email: kodegard@anaconda.com
first_commit: 2020-09-08 19:53:41
github: kenodegard
Expand Down Expand Up @@ -1251,7 +1251,7 @@
github: beeankha
alternate_emails:
- beeankha@gmail.com
num_commits: 36
num_commits: 34
first_commit: 2022-01-19 16:40:06
- name: Conda Bot
email: 18747875+conda-bot@users.noreply.github.com
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
[//]: # (current developments)

## 24.7.1 (2024-07-30)

### Bug fixes

* Check for WSL existence before calling `os.stat`. (#5433 via #5434)

### Contributors

* @kenodegard



## 24.7.0 (2024-07-18)

### Enhancements
Expand Down
5 changes: 4 additions & 1 deletion conda_build/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -1738,7 +1738,10 @@ def bundle_conda(
if (
# WSL bash is always the same path, it is an alias to the default
# distribution as configured by the user
on_win and Path("C:\\Windows\\System32\\bash.exe").samefile(args[0])
on_win
# check if WSL is installed before calling Path.samefile/os.stat
and (wsl_bash := Path("C:\\Windows\\System32\\bash.exe")).exists()
and wsl_bash.samefile(args[0])
):
raise CondaBuildUserError(
"WSL bash.exe is not supported. Please use MSYS2 packages. Add "
Expand Down

0 comments on commit d908fe1

Please sign in to comment.