File tree Expand file tree Collapse file tree 2 files changed +41
-0
lines changed
Expand file tree Collapse file tree 2 files changed +41
-0
lines changed Original file line number Diff line number Diff line change 88extensions = [
99 'custom_roles' ,
1010 'notfound.extension' ,
11+ 'sphinx.ext.extlinks' ,
1112 'sphinx.ext.intersphinx' ,
1213 'sphinx.ext.todo' ,
1314 'sphinx_copybutton' ,
170171# sphinx-notfound-page
171172notfound_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
174183ogp_site_url = "https://devguide.python.org/"
175184ogp_site_name = "Python Developer's Guide"
Original file line number Diff line number Diff line change @@ -371,3 +371,35 @@ administrators) to merge changes to that branch.
371371
372372Multi-Factor Authentication must be enabled by the user in order to retain
373373access 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/
You can’t perform that action at this time.
0 commit comments