-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
PEP 783: Emscripten packaging #4328
base: main
Are you sure you want to change the base?
Conversation
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.
Brief review:
Co-authored-by: Adam Turner <[email protected]>
peps/pep-0783.rst
Outdated
`Emscripten <https://emscripten.org/>`__ is a complete open source compiler | ||
toolchain. It compiles C/C++ code into WebAssembly/JavaScript executables, for | ||
use in JavaScript runtimes, including browsers and Node.js. The Rust language | ||
also maintains an Emscripten target. |
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.
Should this reference PEP 776 as the specification for the platform being packaged?
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.
Perhaps use the Requires header?
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.
That may be desirable as well for metadata purposes - but I was thinking more of an in-text reference.
|
||
It is possible to validate a wheel by installing and importing it into the | ||
Pyodide runtime. Because Pyodide can run in an environment with strong | ||
sandboxing guarantees, doing this produces no security risks. |
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.
It feels like there's a missing piece in this specification - the analog of PEP 600.
PEP 600 specifies a general scheme for ongoing manylinux wheel tags; but that general scheme is predicated on a clear specification for the "anchoring" ABI - a glibc version.
This specification describes the format for a rolling pyodide_<abi>
scheme, but doesn't seem as clear (to me) on how a new version of that specification will be chosen/published. I'm guessing the answer is "it's whatever Pyodide says it is" - which I can see as one way to address my previously raised concerns about Pyodide as a "downstream" specification - but it seems to me that we need a more concrete understanding of exactly how/where the rolling part of the tag will be specified by that downstream specification.
Ideally, that would be a reference to a formal specification (the analog of PEPs but for Pyodide); but even if it were a "code as specification" definition (e.g., whatever pyodide build --abi
generates), it would fill the missing gap here.
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.
@freakboy3742 I added a description of the ABI here:
pyodide/pyodide#5565
Would you be willing to review that?
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.
I've just done a review of that document. Functionally, I think it's capturing the sort of details that this PEP could refer to; most of my comments relate to how the information provided could be presented to make the specific compliance requirements easier to extract.
Co-authored-by: Adam Turner <[email protected]>
@@ -2,12 +2,13 @@ PEP: 783 | |||
Title: Emscripten Packaging | |||
Author: Hood Chatham <roberthoodchatham at gmail.com> | |||
Sponsor: Łukasz Langa <lukasz at python.org> | |||
Discussions-To: | |||
Discussions-To: https://discuss.python.org/t/86862 |
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.
In future, please only open such threads when the PR has been merged / is about to be merged -- the RtD preview links are temporary, and review can lead to changes in the PEP, meaning the wider audience has an outdated understanding of the text.
We try to put this across in the PR template, but we could strengthen the wording!
A
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.
Ah sorry. I opened the thread primarily because I wanted the ci to be green. I figured I could edit the link in the post to point to the merged version when the pr lands.
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.
The "Check PEPs" validation error I got reads to me like a direct instruction to go create a discussion thread, so I didn't read anything else before making it:
Discussions-To must be a valid thread URL or mailing list
Co-authored-by: Adam Turner <[email protected]>
Co-authored-by: Juniper Tyree <[email protected]>
cc @pfmoore.
Basic requirements (all PEP Types)
pep-NNNN.rst
), PR title (PEP 123: <Title of PEP>
) andPEP
headerAuthor
orSponsor
, and formally confirmed their approvalAuthor
,Status
(Draft
),Type
andCreated
headers filled out correctlyPEP-Delegate
,Topic
,Requires
andReplaces
headers completed if appropriate.github/CODEOWNERS
for the PEPStandards Track requirements
Python-Version
set to valid (pre-beta) future Python version, if relevantDiscussions-To
andPost-History
📚 Documentation preview 📚: https://pep-previews--4328.org.readthedocs.build/