8000 All PEPs: Move to ``peps/`` folder by AA-Turner · Pull Request #3418 · python/peps · GitHub
[go: up one dir, main page]

Skip to content

All PEPs: Move to peps/ folder #3418

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 22 commits into from
Sep 9, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
Further supporting files updates
  • Loading branch information
AA-Turner committed Sep 3, 2023
commit 14d7bca47410e17f8ff6fa0aa63a5b013c034b91
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def create_index_file(html_root: Path, builder: str) -> None:
args = create_parser()

root_directory = Path(__file__).resolve().parent
source_directory = root_directory
source_directory = root_directory / "peps"
build_directory = root_directory / args.output_dir

# builder configuration
Expand Down
6 changes: 3 additions & 3 deletions docs/rendering_system.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ to `PEP 676 <https://peps.python.org/pep-0676/>`__.

Configuration is stored in three files:

- ``conf.py`` contains the majority of the Sphinx configuration
- ``contents.rst`` contains the compulsory table of contents directive
- ``peps/conf.py`` contains the majority of the Sphinx configuration
- ``peps/contents.rst`` contains the compulsory table of contents directive
- ``pep_sphinx_extensions/pep_theme/theme.conf`` sets the Pygments themes

The configuration:
Expand All @@ -35,7 +35,7 @@ The configuration:
----------------

``build.py`` manages the rendering process.
Usage is covered in :doc:`build`.
Usage is covered in `Building PEPs Locally <./build.rst>`_.


3. Extension
Expand Down
0