Skip to content

Commit

Permalink
Add governance contact (#1260)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Jan 30, 2024
1 parent cb7c54c commit 90595bc
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
9 changes: 9 additions & 0 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
extensions = [
'custom_roles',
'notfound.extension',
'sphinx.ext.extlinks',
'sphinx.ext.intersphinx',
'sphinx.ext.todo',
'sphinx_copybutton',
Expand Down Expand Up @@ -170,6 +171,14 @@
# sphinx-notfound-page
notfound_urls_prefix = "/"

# sphinx.ext.extlinks
# This config is a dictionary of external sites,
# mapping unique short aliases to a base URL and a prefix.
# https://www.sphinx-doc.org/en/master/usage/extensions/extlinks.html
extlinks = {
"github": ("https://github.com/%s/", "%s"),
}

# sphinxext-opengraph config
ogp_site_url = "https://devguide.python.org/"
ogp_site_name = "Python Developer's Guide"
Expand Down
32 changes: 32 additions & 0 deletions developer-workflow/development-cycle.rst
Original file line number Diff line number Diff line change
Expand Up @@ -371,3 +371,35 @@ 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.

Governance
----------

The Python Steering Council has overall authority over Python and has delegated
some of its responsibilities to other groups.

This table lists the PEPs defining each group's responsibilities,
and the repository where you can open an issue to ask for a decision.

.. list-table::
:header-rows: 1

* - Name
- PEP
- Contact repo
* - Steering Council
- :pep:`13`
- :github:`python/steering-council`
* - C API Working Group
- :pep:`731`
- :github:`capi-workgroup/decisions`
* - Documentation Editorial Board
- :pep:`732`
- :github:`python/editorial-board`
* - Typing Council
- :pep:`729`
- :github:`python/typing-council`

.. seealso::

All governance PEPs: https://peps.python.org/topic/governance/

0 comments on commit 90595bc

Please sign in to comment.