Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@
"github": ("https://github.com/%s", "%s"),
"github-user": ("https://github.com/%s", "@%s"),
"pypi": ("https://pypi.org/project/%s/", "%s"),
"pypi-org": ("https://pypi.org/org/%s/", "%s"),
}

# sphinxext-opengraph config
Expand Down
24 changes: 24 additions & 0 deletions developer-workflow/development-cycle.rst
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,30 @@ administrators) to merge changes to that branch.
Multi-Factor Authentication must be enabled by the user in order to retain
access as a Release Manager of the branch.

PyPI organization policy
^^^^^^^^^^^^^^^^^^^^^^^^

The Python core team owns the :pypi-org:`cpython` and :pypi-org:`python`
organizations on PyPI for publishing packages.
The main benefits of adding packages to these organizations:

* Visibility: we can see our packages under a PyPI org page
* Maintainability: we can share granular PyPI access to improve the bus factor

The general policy on which organization to use:

* :pypi-org:`cpython`:
for development tools that are tied fairly closely to CPython development.
For example, :pypi:`blurb` and :pypi:`cherry-picker`.
Users generally shouldn’t have to care except for developing CPython itself
(although that doesn’t mean the tools necessarily have to be unusable for
anyone else).
* :pypi-org:`python`:
for general-audience projects that are maintained by the Python core team.
For example, :pypi:`pyperformance`, :pypi:`python-docs-theme` and
:pypi:`tzdata`.


Governance
----------

Expand Down
Loading