Skip to content

Commit a53b33b

Browse files
authored
Merge branch 'main' into aisk-patch-1
2 parents 5d11390 + eae707b commit a53b33b

File tree

139 files changed

+4900
-4696
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+4900
-4696
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ indent_size = 4
1111
[*.rst]
1212
indent_size = 3
1313

14-
[*.yml]
14+
[*.{css,yml}]
1515
indent_size = 2

.flake8

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/CODE_OF_CONDUCT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ Code of Conduct
44
Please note that all interactions on
55
[Python Software Foundation](https://www.python.org/psf-landing/)-supported
66
infrastructure is [covered](https://www.python.org/psf/records/board/minutes/2014-01-06/#management-of-the-psfs-web-properties)
7-
by the [PSF Code of Conduct](https://www.python.org/psf/conduct/),
7+
by the [PSF Code of Conduct](https://policies.python.org/python.org/code-of-conduct/),
88
which includes all infrastructure used in the development of Python itself
9-
(e.g. mailing lists, issue trackers, GitHub, etc.).
9+
(for example, mailing lists, issue trackers, GitHub, etc.).
1010

1111
In general this means everyone is expected to be open, considerate, and
1212
respectful of others no matter what their position is within the project.

.github/CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@ our workflow that are not covered by a bot or status check are:
2929

3030
## Setting Expectations
3131

32-
Due to the fact that this project is entirely volunteer-run (i.e. no one is paid
32+
Due to the fact that this project is entirely volunteer-run (that is, no one is paid
3333
to work on Python full-time), we unfortunately can make no guarantees as to if
3434
or when a core developer will get around to reviewing your pull request.
3535
If no core developer has done a review or responded to changes made because of a
36-
"changes requested" review, please feel free to email [python-dev](https://mail.python.org/mailman3/lists/python-dev.python.org/) to ask if
37-
someone could take a look at your pull request.
36+
"changes requested" review, please consider seeking assistance through the
37+
[Core Development Discourse category](https://discuss.python.org/c/core-dev/23).
3838

3939

4040
## Code of Conduct
4141

4242
All interactions for this project are covered by the
43-
[PSF Code of Conduct](https://www.python.org/psf/conduct/). Everyone is
43+
[PSF Code of Conduct](https://policies.python.org/python.org/code-of-conduct/). Everyone is
4444
expected to be open, considerate, and respectful of others no matter their
4545
position within the project.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 25 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: "Bug report"
2+
description: Create a report to help us improve the Python devguide
3+
title: "Bug: <title>"
4+
labels: ["bug"]
5+
assignees: []
6+
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
> [!NOTE]
12+
> This repo is for the [Python developer's guide](https://devguide.python.org/).
13+
> If you are reporting a bug for the Python language or
14+
> CPython interpreter, then use the
15+
> [CPython issue tracker](https://github.com/python/cpython/issues) instead.
16+
17+
- type: textarea
18+
id: bug_description
19+
attributes:
20+
label: "Describe the bug"
21+
description: A clear and concise description of what the bug is and, optionally, what you expected to happen.
22+
validations:
23+
required: true
24+
25+
- type: textarea
26+
id: screenshots
27+
attributes:
28+
label: "Screenshots"
29+
description: If applicable, add screenshots to help explain your problem.
30+
validations:
31+
required: false
32+
33+
- type: textarea
34+
id: additional_context
35+
attributes:
36+
label: "Additional context"
37+
description: Add any other context about the problem here.
38+
validations:
39+
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: CPython Documentation
4+
url: https://docs.python.org/
5+
about: Official CPython documentation - please check here before opening an issue.
6+
- name: Python Website
7+
url: https://python.org/
8+
about: For all things Python
9+
- name: PyPI Issues / Support
10+
url: https://github.com/pypi/support
11+
about: For issues with PyPI itself, PyPI accounts, or with packages hosted on PyPI.
12+
- name: CPython Issues
13+
url: https://github.com/python/cpython/issues
14+
about: For issues with the CPython interpreter itself.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 22 deletions
This file was deleted.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: "Feature request"
2+
description: Suggest an idea for the Python devguide
3+
title: "Feature: <title>"
4+
labels: ["enhancement"]
5+
assignees: []
6+
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
> [!NOTE]
12+
> This repo is for the [Python developer's guide](https://devguide.python.org/).
13+
> If you are requesting an enhancement for the Python language or
14+
> CPython interpreter, then use the
15+
> [CPython issue tracker](https://github.com/python/cpython/issues) instead.
16+
17+
- type: textarea
18+
id: feature_description
19+
attributes:
20+
label: "Describe the enhancement or feature you would like"
21+
description: A clear and concise description of what you want to happen.
22+
validations:
23+
required: true
24+
25+
- type: textarea
26+
id: alternatives
27+
attributes:
28+
label: "Describe alternatives you have considered"
29+
description: A clear and concise description of any alternative solutions or features you have considered.
30+
validations:
31+
required: false
32+
33+
- type: textarea
34+
id: additional_context
35+
attributes:
36+
label: "Additional context"
37+
description: Add any other context or screenshots about the feature request here.
38+
validations:
39+
required: false

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v4
16-
- uses: actions/setup-python@v4
16+
- uses: actions/setup-python@v5
1717
with:
1818
python-version: "3"
19-
cache: pip
19+
- name: Install uv
20+
uses: hynek/setup-cached-uv@v2
2021
- name: Build docs
2122
run: make html
2223
- name: Link check

0 commit comments

Comments
 (0)