Python Enhancement Proposals

PEP 676 – PEP Infrastructure Process

PEP
676
Title
PEP Infrastructure Process
Author
Adam Turner <python at quite.org.uk>
Sponsor
Mariatta <mariatta at python.org>
PEP-Delegate
Barry Warsaw <barry at python.org>
Discussions-To
https://discuss.python.org/t/10774
Status
Active
Type
Process
Created
01-Nov-2021
Post-History
23-Sep-2021, 30-Nov-2021
Resolution
https://discuss.python.org/t/10774/99

Contents

Abstract

This PEP addresses the infrastructure around rendering PEP files from reStructuredText files to HTML webpages. We aim to specify a self-contained and maintainable solution for PEP readers, authors, and editors.

Motivation

As of November 2021, Python Enhancement Proposals (PEPs) are rendered in a multi-system, multi-stage process. A continuous integration (CI) task runs a docutils script to render all PEP files individually. The CI task then uploads a tar archive to a server, where it is retrieved and rendered into the python.org website periodically.

This places a constraint on the python.org website to handle raw HTML uploads and handle PEP rendering, and makes the appropriate place to raise issues unclear in some cases [1].

This PEP provides a specification for self-contained rendering of PEPs. This would:

  • reduce the amount of distributed configuration for supporting PEPs
  • enable quality-of-life improvements for those who read, write, and review PEPs
  • solve a number of outstanding issues, and lay the path for improvements
  • save volunteer maintainers’ time

We propose that PEPs are accessed through peps.python.org at the top-level (for example peps.python.org/pep-0008), and that all custom tooling to support rendering PEPs is hosted in the python/peps repository.

Rationale

Simplifying and Centralising Infrastructure

As of November 2021, to locally render a PEP file, a PEP author or editor needs to create a full local instance of the python.org website and run a number of disparate scripts, following documentation that lives outside of the python/peps repository.

By contrast, the proposed implementation provides a single Makefile and a Python script to render all PEP files, with options to target a web-server or the local filesystem.

Using a single repository to host all tooling will clarify where to raise issues, reducing volunteer time spent in triage.

Simplified and centralised tooling may also reduce the barrier to entry to further improvements, as the scope of the PEP rendering infrastructure is well defined.

Quality-of-Life Improvements and Resolving Issues

There are several requests for additional features in reading PEPs, such as:

  • syntax highlighting [2]
  • use of .. code-block:: directives [2]
  • support for SVG images [3]
  • typographic quotation marks [4]
  • additional footer information [5]
  • intersphinx functionality [6]
  • dark mode theme [7]

These are “easy wins” from this proposal, and would serve to improve the quality-of-life for consumers of PEPs (including reviewers and writers).

For example, the current (as of November 2021) system runs periodically on a schedule. This means that updates to PEPs cannot be circulated immediately, reducing productivity. The reference implementation renders and publishes all PEPs on every commit to the repository, solving the issue by design.

The reference implementation fixes several issues [8]. For example:

  • list styles are currently not respected by python.org’s stylesheets
  • support for updating images in PEPs is challenging in python.org

Third-party providers such as Read the Docs or Netlify can enhance this experience with features such as automatic rendering of pull requests.

Specification

The proposed specification for rendering the PEP files to HTML is as per the reference implementation.

The rendered PEPs MUST be available at peps.python.org. These SHOULD be hosted as static files, and MAY be behind a content delivery network (CDN).

A service to render previews of pull requests SHOULD be provided. This service MAY be integrated with the hosting and deployment solution.

The following redirect rules MUST be created for the python.org domain:

The following nginx configuration would achieve this:

location ~ ^/dev/peps/?(.*)$ {
    return 308 https://peps.python.org/$1/;
}

location ~ ^/peps/(.*)\.html$ {
    return 308 https://peps.python.org/$1/;
}

location ^/(dev/)?peps(/.*)?$ {
    return 308 https://peps.python.org/;
}

Redirects MUST be implemented to preserve URL fragments for backward compatibility purposes.

Backwards Compatibility

Due to server-side redirects to the new canonical URLs, links in previously published materials referring to the old URL schemes will be guaranteed to work. All PEPs will continue to render correctly, and a custom stylesheet in the reference implementation improves presentation for some elements (most notably code blocks and block quotes). Therefore, this PEP presents no backwards compatibility issues.

Security Implications

The main python.org website will no longer process raw HTML uploads, closing a potential threat vector. PEP rendering and deployment processes will use modern, well-maintained code and secure automated platforms, further reducing the potential attack surface. Therefore, we see no negative security impact.

How to Teach This

The new canonical URLs will be publicised in the documentation. However, this is mainly a backend infrastructure change, and there should be minimal end-user impact. PEP 1 and PEP 12 will be updated as needed.

Reference Implementation

The proposed implementation has been merged into the python/peps repository in a series of pull requests [9]. It uses the Sphinx documentation system with a custom theme (supporting light and dark colour schemes) and extensions.

This already automatically renders all PEPs on every commit, and publishes them to python.github.io/peps. The high level documentation for the system covers how to render PEPs locally and the implementation of the system.

Rejected Ideas

It would likely be possible to amend the current (as of November 2021) rendering process to include a subset of the quality-of-life improvements and issue mitigations mentioned above. However, we do not believe that this would solve the distributed tooling issue.

It would be possible to use the output from the proposed rendering system and import it into python.org. We would argue that this would be the worst of both worlds, as a great deal of complexity is added whilst none is removed.

Acknowledgements

  • Hugo van Kemenade
  • Pablo Galindo Salgado
  • Éric Araujo
  • Mariatta
  • C.A.M. Gerlach

Footnotes

[1]
For example, pythondotorg#1024, pythondotorg#1038, pythondotorg#1387, pythondotorg#1388, pythondotorg#1393, pythondotorg#1564, pythondotorg#1913,
[2] (1, 2)
Requested: pythondotorg#1063, pythondotorg#1206, pythondotorg#1638, peps#159, comment in peps#1571, peps#1577,
[3]
Requested: peps#701
[4]
Requested: peps#165
[5]
Requested: pythondotorg#1564
[6]
Requested: comment in peps#2
[7]
Requested: in python-dev
[8]
As of November 2021, see peps#1387, pythondotorg#824, pythondotorg#1556,
[9]
Implementation PRs: peps#1930, peps#1931, peps#1932, peps#1933, peps#1934

Source: https://github.com/python-discord/peps/blob/main/pep-0676.rst

Last modified: 2022-03-10 08:27:31 GMT