Skip to content

Commit 7297d7f

Browse files
authored
Merge branch 'main' into clarify-dev-cycle
2 parents 270131a + 1830ddd commit 7297d7f

Some content is hidden

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

53 files changed

+363
-399
lines changed

.github/CONTRIBUTING.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,12 @@ Please be aware that our workflow does deviate slightly from the typical GitHub
1818
project. Details on how to properly submit a pull request are covered in
1919
[Lifecycle of a Pull Request](https://devguide.python.org/pullrequest/).
2020
We utilize various bots and status checks to help with this, so do follow the
21-
comments they leave and their "Details" links, respectively. The key points of
22-
our workflow that are not covered by a bot or status check are:
21+
comments they leave and their "Details" links, respectively.
2322

24-
- All discussions that are not directly related to the code in the pull request
25-
should happen on the [issue tracker](https://devguide.python.org/tracker/)
26-
- Upon your first non-trivial pull request (which includes documentation changes),
27-
feel free to add yourself to [`Misc/ACKS`](https://github.com/python/cpython/blob/main/Misc/ACKS)
23+
The final key part of our workflow is that all discussions that are not
24+
directly related to the code in the pull request should happen on the
25+
[issue tracker](https://devguide.python.org/tracker/), generally in the
26+
pull request's parent issue.
2827

2928

3029
## Setting Expectations

.github/dependabot.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11
version: 2
22
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: monthly
7+
assignees:
8+
- "ezio-melotti"
9+
groups:
10+
actions:
11+
patterns:
12+
- "*"
13+
314
- package-ecosystem: pip
415
directory: "/"
516
schedule:
617
interval: monthly
7-
open-pull-requests-limit: 10
18+
assignees:
19+
- "ezio-melotti"
20+
groups:
21+
pip:
22+
patterns:
23+
- "*"

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
timeout-minutes: 10
1313

1414
steps:
15-
- uses: actions/checkout@v4
16-
- uses: actions/setup-python@v5
15+
- uses: actions/checkout@v6
16+
- uses: actions/setup-python@v6
1717
with:
1818
python-version: "3"
1919
- name: Install uv

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
timeout-minutes: 10
99

1010
steps:
11-
- uses: actions/checkout@v4
12-
- uses: actions/setup-python@v4
11+
- uses: actions/checkout@v6
12+
- uses: actions/setup-python@v6
1313
with:
1414
python-version: "3.x"
15-
- uses: pre-commit/[email protected].0
15+
- uses: pre-commit/[email protected].1
-4.31 KB
Binary file not shown.
-4.24 KB
Binary file not shown.
-4.76 KB
Binary file not shown.
-4.75 KB
Binary file not shown.
-5.58 KB
Binary file not shown.

conf.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,14 @@
149149
"pullrequest.rst": "getting-started/pull-request-lifecycle.rst",
150150
"setup.rst": "getting-started/setup-building.rst",
151151
# CPython Internals
152-
"compiler.rst": "internals/compiler.rst",
153-
"exploring.rst": "internals/exploring.rst",
154-
"garbage_collector.rst": "internals/garbage-collector.rst",
155-
"parser.rst": "internals/parser.rst",
152+
"compiler.rst": "internals.rst",
153+
"exploring.rst": "internals.rst",
154+
"garbage_collector.rst": "internals.rst",
155+
"parser.rst": "internals.rst",
156+
"internals/compiler.rst": "internals.rst",
157+
"internals/exploring.rst": "internals.rst",
158+
"internals/garbage_collector.rst": "internals.rst",
159+
"internals/parser.rst": "internals.rst",
156160
# Testing and Buildbots
157161
"buildbots.rst": "testing/buildbots.rst",
158162
"coverage.rst": "testing/coverage.rst",

0 commit comments

Comments
 (0)