Skip to content

Commit

Permalink
download_python use linux as default auto platform
Browse files Browse the repository at this point in the history
  • Loading branch information
ClericPy committed Oct 17, 2024
1 parent 9033e60 commit 569c33e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@

# Changelogs

- 2024.10.17
- fix linux test cases
- download_python
- remove default stripped keyword
- use linux as default auto platform
-
- 2024.09.17
- `download_python` remove default `stripped` keyword
- `test_utils.py` use `test_cache/` folder to avoid conflict
Expand Down
4 changes: 3 additions & 1 deletion zipapps/download_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ def choose_asset(assets: list, keywords, auto=False):
keywords.add(system)
if system == "windows":
keywords.add("msvc-shared")
elif system == "linux":
elif system == "darwin":
pass
else:
keywords.add("gnu")
keywords.add("unknown")
for v in ("v2", "v3", "v4"):
Expand Down

0 comments on commit 569c33e

Please sign in to comment.