8000 gh-131531: android.py enhancements to support cibuildwheel by mhsmith · Pull Request #132870 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-131531: android.py enhancements to support cibuildwheel #132870

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Jun 5, 2025
Merged
Changes from 1 commit
Commits
8000 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
Prev Previous commit
Next Next commit
Prefer 'encoding' to 'text'
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
  • Loading branch information
mhsmith and AA-Turner committed Apr 24, 2025
commit 24b082f74ea346408effe7b9546ecf4f52737fe3
2 changes: 1 addition & 1 deletion Android/android.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def android_env(host):
f"PREFIX={prefix}; "
f". {env_script}; "
f"export",
check=True, shell=True, capture_output=True, text=True,
check=True, shell=True, capture_output=True, encoding='utf-8',
).stdout

env = {}
Expand Down
Loading
0