10000 Add governance contact (#1260) · python/devguide@90595bc · GitHub
[go: up one dir, main page]

Skip to content

Commit 90595bc

Browse files
authored
Add governance contact (#1260)
1 parent cb7c54c commit 90595bc

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

conf.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
extensions = [
99
'custom_roles',
1010
'notfound.extension',
11+
'sphinx.ext.extlinks',
1112
'sphinx.ext.intersphinx',
1213
'sphinx.ext.todo',
1314
'sphinx_copybutton',
@@ -170,6 +171,14 @@
170171
# sphinx-notfound-page
171172
notfound_urls_prefix = "/"
172173

174+
# sphinx.ext.extlinks
175+
# This config is a dictionary of external sites,
176+
# mapping unique short aliases to a base URL and a prefix.
177+
# https://www.sphinx-doc.org/en/master/usage/extensions/extlinks.html
178+
extlinks = {
179+
"github": ("https://github.com/%s/", "%s"),
180+
}
181+
173182
# sphinxext-opengraph config
174183
ogp_site_url = "https://devguide.python.org/"
175184
ogp_site_name = "Python Developer's Guide"

developer-workflow/development-cycle.rst

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,3 +371,35 @@ administrators) to merge changes to that branch.
371371

372372
Multi-Factor Authentication must be enabled by the user in order to retain
373373
access as a Release Manager of the branch.
374+
375+
Governance
376+
----------
377+
378+
The Python Steering Council has overall authority over Python and has delegated
379+
some of its responsibilities to other groups.
380+
381+
This table lists the PEPs defining each group's responsibilities,
382+
and the repository where you can open an issue to ask for a decision.
383+
384+
.. list-table::
385+
:header-rows: 1
386+
387+
* - Name
388+
- PEP
389+
- Contact repo
390+
* - Steering Council
391+
- :pep:`13`
392+
- :github:`python/steering-council`
393+
* - C API Working Group
394+
- :pep:`731`
395+
- :github:`capi-workgroup/decisions`
396+
* - Documentation Editorial Board
397+
- :pep:`732`
398+
- :github:`python/editorial-board`
399+
* - Typing Council
400+
- :pep:`729`
401+
- :github:`python/typing-council`
402+
403+
.. seealso::
404+
405+
All governance PEPs: https://peps.python.org/topic/governance/

0 commit comments

Comments
 (0)
0