Skip to content

Commit 569c33e

Browse files
committed
download_python use linux as default auto platform
1 parent 9033e60 commit 569c33e

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11

22
# Changelogs
33

4+
- 2024.10.17
5+
- fix linux test cases
6+
- download_python
7+
- remove default stripped keyword
8+
- use linux as default auto platform
9+
-
410
- 2024.09.17
511
- `download_python` remove default `stripped` keyword
612
- `test_utils.py` use `test_cache/` folder to avoid conflict

zipapps/download_python.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ def choose_asset(assets: list, keywords, auto=False):
5959
keywords.add(system)
6060
if system == "windows":
6161
keywords.add("msvc-shared")
62-
elif system == "linux":
62+
elif system == "darwin":
63+
pass
64+
else:
6365
keywords.add("gnu")
6466
keywords.add("unknown")
6567
for v in ("v2", "v3", "v4"):

0 commit comments

Comments
 (0)