Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
peps/Makefile at main · python/peps · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
peps
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
1.8k
Star
5k
Code
Issues
20
Pull requests
44
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Files
Expand file tree
main
Breadcrumbs
peps
/
Makefile
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
124 lines (105 loc) · 3.74 KB
main
Breadcrumbs
peps
/
Makefile
Copy path
Top
File metadata and controls
Code
Blame
124 lines (105 loc) · 3.74 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#
Builds PEP files to HTML using sphinx
#
You can set these variables from the command line.
PYTHON
= python3
VENVDIR
= .venv
UV
= uv
#
synchronise with render.yml -> deploy step
BUILDDIR
= build
SPHINXBUILD
= PATH=
$(
VENVDIR
)
/bin:$$PATH sphinx-build
BUILDER
= html
JOBS
= auto
SOURCES
=
REQUIREMENTS
= requirements.txt
SPHINXERRORHANDLING
= --fail-on-warning --keep-going --warning-file sphinx-warnings.txt
ALLSPHINXOPTS
= --builder
$(
BUILDER
)
\
--jobs
$(
JOBS
)
\
$(
SPHINXOPTS
)
$(
SPHINXERRORHANDLING
)
\
peps
$(
BUILDDIR
)
$(
SOURCES
)
#
# html to render PEPs to "pep-NNNN.html" files
.PHONY
: html
html
: venv
$(
SPHINXBUILD
)
$(
ALLSPHINXOPTS
)
#
# htmlview to open the index page built by the html target in your browser
.PHONY
: htmlview
htmlview
: html
$(
PYTHON
)
-c
"
import os, webbrowser; webbrowser.open('file://' + os.path.realpath('build/index.html'))
"
#
# htmllive to rebuild and reload HTML files in your browser
.PHONY
: htmllive
htmllive
: SPHINXBUILD = PATH=
$(
VENVDIR
)
/bin:$$PATH sphinx-autobuild
#
Arbitrarily selected ephemeral port between 49152–65535
#
to avoid conflicts with other processes:
htmllive
: SPHINXERRORHANDLING = --re-ignore="/\.idea/|/venv/|/numerical.rst|/pep-0000.rst|/topic/" --open-browser --delay 0 --port 55302
htmllive
: _ensure-sphinx-autobuild html
#
# dirhtml to render PEPs to "index.html" files within "pep-NNNN" directories
.PHONY
: dirhtml
dirhtml
: BUILDER = dirhtml
dirhtml
: html
mv
$(
BUILDDIR
)
/404/index.html
$(
BUILDDIR
)
/404.html
#
# search to rebuild the search index
.PHONY
: search
search
: venv
$(
VENVDIR
)
/bin/python3 -m pagefind --site
$(
BUILDDIR
)
--verbose
#
# linkcheck to check validity of links within PEP sources
.PHONY
: linkcheck
linkcheck
: BUILDER = linkcheck
linkcheck
: html
#
# clean to remove the venv and build files
.PHONY
: clean
clean
: clean-venv
-rm -rf
$(
BUILDDIR
)
#
# clean-venv to remove the venv
.PHONY
: clean-venv
clean-venv
:
rm -rf
$(
VENVDIR
)
#
# venv to create a venv with necessary tools
.PHONY
: venv
venv
:
@if [
-d
$(
VENVDIR
)
]
;
then
\
echo
"
venv already exists.
"
;
\
echo
"
To recreate it, remove it first with
\`
make clean-venv'.
"
;
\
else
\
set
-e
;
\
echo
"
Creating venv in
$(
VENVDIR
)
"
;
\
if
$(
UV
)
--version
>
/dev/null
2>&1
;
then
\
$(
UV
)
venv --python=
$(
PYTHON
)
$(
VENVDIR
)
;
\
VIRTUAL_ENV=
$(
VENVDIR
)
$(
UV
)
pip install -r
$(
REQUIREMENTS
)
;
\
else
\
$(
PYTHON
)
-m venv
$(
VENVDIR
)
;
\
$(
VENVDIR
)
/bin/python3 -m pip install --upgrade pip
;
\
$(
VENVDIR
)
/bin/python3 -m pip install -r
$(
REQUIREMENTS
)
;
\
fi
;
\
echo
"
The venv has been created in the
$(
VENVDIR
)
directory
"
;
\
fi
.PHONY
: _ensure-package
_ensure-package
: venv
if
$(
UV
)
--version
>
/dev/null
2>&1
;
then
\
VIRTUAL_ENV=
$(
VENVDIR
)
$(
UV
)
pip install
$(
PACKAGE
)
;
\
else
\
$(
VENVDIR
)
/bin/python3 -m pip install
$(
PACKAGE
)
;
\
fi
.PHONY
: _ensure-pre-commit
_ensure-pre-commit
:
$(
MAKE
)
_ensure-package PACKAGE=pre-commit
.PHONY
: _ensure-sphinx-autobuild
_ensure-sphinx-autobuild
:
$(
MAKE
)
_ensure-package PACKAGE=sphinx-autobuild
#
# lint to lint all the files
.PHONY
: lint
lint
: _ensure-pre-commit
$(
VENVDIR
)
/bin/python3 -m pre_commit run --all-files
#
# test to test the Sphinx extensions for PEPs
.PHONY
: test
test
: venv
$(
VENVDIR
)
/bin/python3 -bb -X dev -W error -m pytest
#
# spellcheck to check spelling
.PHONY
: spellcheck
spellcheck
: _ensure-pre-commit
$(
VENVDIR
)
/bin/python3 -m pre_commit run --all-files --hook-stage manual codespell
#
# regen-all to regenerate generated source files
.PHONY
: regen-all
regen-all
:
$(
PYTHON
)
-m release_management update-peps
.PHONY
: help
help
: Makefile
@echo
"
Please use
\`
make <target>' where <target> is one of
"
@sed -n
'
s/^##//p
'
$<
You can’t perform that action at this time.