-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Introduce the concept of sponsors #903
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
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,17 +107,7 @@ PEP Editors | |
The PEP editors are individuals responsible for managing the administrative | ||
and editorial aspects of the PEP workflow (e.g. assigning PEP numbers and | ||
changing their status). See `PEP Editor Responsibilities & Workflow`_ for | ||
details. The current editors are: | ||
|
||
* Chris Angelico | ||
* Anthony Baxter | ||
* Georg Brandl | ||
* Brett Cannon | ||
* David Goodger | ||
* \R. David Murray | ||
* Jesse Noller | ||
* Berker Peksag | ||
* Barry Warsaw | ||
details. | ||
|
||
PEP editorship is by invitation of the current editors, and they can be | ||
contacted via the address <[email protected]>, but you may only need to use this | ||
|
@@ -166,10 +156,22 @@ initial concerns about the proposal. | |
Submitting a PEP | ||
---------------- | ||
|
||
Following a discussion on python-ideas, the proposal should be submitted as a | ||
draft PEP via a `GitHub pull request`_. The draft must be written in PEP | ||
style as described below, else it will fail review immediately (although minor | ||
errors may be corrected by the editors). | ||
Following a discussion on python-ideas, the workflow varies based on whether | ||
the PEP author is a core developer. If the PEP author is **not** a | ||
core developer then the PEP author will need to find a core developer | ||
*sponsor* for the PEP. The sponsor's job is to provide guidance to the PEP | ||
author to help them through the logistics of the PEP process (somewhat acting | ||
like mentor). For the core developer sponsoring, being a sponsor does **not** | ||
disqualify them from becoming a co-author or BDFL-Delegate later on (but not | ||
both). The core developer who becomes the sponsor of a PEP is recorded in the | ||
"Sponsor:" field of the header. | ||
|
||
Once a core developer is found that is willing to sponsor the PEP -- whether by | ||
being an author of the PEP or specifically a sponsor -- and deems the PEP ready | ||
for submission, the proposal should be submitted as a draft PEP via a | ||
`GitHub pull request`_. The draft must be written in PEP style as described | ||
below, else it will fail review immediately (although minor errors may be | ||
corrected by the editors). | ||
|
||
The standard PEP workflow is: | ||
|
||
|
@@ -488,6 +490,7 @@ optional and are described below. All other headers are required. :: | |
PEP: <pep number> | ||
Title: <pep title> | ||
Author: <list of authors' real names and optionally, email addrs> | ||
* Sponsor: <real name of core developer sponsoring> | ||
* BDFL-Delegate: <PEP czar's real name> | ||
* Discussions-To: <email address> | ||
Status: <Draft | Active | Accepted | Provisional | Deferred | Rejected | | ||
|
@@ -522,6 +525,10 @@ following RFC 2822 continuation line conventions. Note that personal | |
email addresses in PEPs will be obscured as a defense against spam | ||
harvesters. | ||
|
||
The Sponsor field records which core developer is sponsoring the PEP. | ||
If one of the authors of the PEP is a core developer then no sponsor is | ||
necessary and thus this field should be left out. | ||
|
||
The BDFL-Delegate field is used to record the individual appointed by the | ||
Steering Council to make the final decision on whether or not to approve or | ||
reject a PEP. (The delegate's email address is currently omitted due to a | ||
|
@@ -639,12 +646,16 @@ handled through GitHub issues and pull requests, but you may also use | |
|
||
For each new PEP that comes in an editor does the following: | ||
|
||
* Make sure a core developer is either an author or a sponsor of the PEP. | ||
|
||
* Read the PEP to check if it is ready: sound and complete. The ideas | ||
must make technical sense, even if they don't seem likely to be | ||
accepted. | ||
|
||
* The title should accurately describe the content. | ||
|
||
* The file name extension is correct (i.e. ``.rst``). | ||
|
||
* Skim the PEP for obvious defects in language (spelling, grammar, | ||
sentence structure, etc.), and code style (examples should conform to | ||
PEP 8 & PEP 7). Editors may correct problems themselves, but are | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Beware that this requires a change to the pep2html.py script.
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.
Yep, that's the next step before merging. 😄 I just wanted to make sure the idea had traction and support before I did the coding work.
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.
#911