-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Add support for Android and iOS platforms #12220
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
base: master
Are you sure you want to change the base?
Changes from all commits
ddf04a6
1103992
165104f
bb36a1a
257947d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Added wheels for Android and iOS platforms -- by :user:`timrid`. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -48,10 +48,10 @@ dynamic = [ | |
|
|
||
| [project.optional-dependencies] | ||
| speedups = [ | ||
| "aiodns >= 3.3.0", | ||
| "Brotli >= 1.2; platform_python_implementation == 'CPython'", | ||
| "aiodns >= 3.3.0; sys_platform != 'android' and sys_platform != 'ios'", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If you could make a PR to pycares to support this, we could probably get this resolved pretty quick. Unless there's a technical difficulty in supporting these platforms?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I tried to compile |
||
| "Brotli >= 1.2; platform_python_implementation == 'CPython' and sys_platform != 'android' and sys_platform != 'ios'", | ||
| "brotlicffi >= 1.2; platform_python_implementation != 'CPython'", | ||
| "backports.zstd; platform_python_implementation == 'CPython' and python_version < '3.14'", | ||
| "backports.zstd; platform_python_implementation == 'CPython' and python_version < '3.14' and sys_platform != 'android' and sys_platform != 'ios'", | ||
| ] | ||
|
|
||
| [[project.maintainers]] | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| -r runtime-deps.in | ||
|
|
||
| gunicorn | ||
| uvloop; platform_system != "Windows" and implementation_name == "cpython" # MagicStack/uvloop#14 | ||
| uvloop; platform_system != "Windows" and implementation_name == "cpython" and sys_platform != 'android' and sys_platform != 'ios' # MagicStack/uvloop#14 | ||
| winloop; platform_system == "Windows" and implementation_name == "cpython" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This workflow is missing the coverage steps, which is why codecov is complaining.