Skip to content

Commit eba8efb

Browse files
authored
Merge branch 'main' into prune-experts
2 parents 55bd28a + 5a4dd49 commit eba8efb

File tree

127 files changed

+2734
-3134
lines changed

Some content is hidden

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

127 files changed

+2734
-3134
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
# It uses the same pattern rule for gitignore file
55
# https://git-scm.com/docs/gitignore#_pattern_format
66

7-
8-
garbage_collector.rst @pablogsal
7+
# PSRT member list owned by PSRT admins.
8+
developer-workflow/psrt.csv @warsaw @ewdurbin @ned-deily @sethmlarson

.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/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: "Bug report"
22
description: Create a report to help us improve the Python devguide
33
title: "Bug: <title>"
4-
labels: ["bug"]
4+
labels: ["type-bug"]
55
assignees: []
66

77
body:

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: "Feature request"
22
description: Suggest an idea for the Python devguide
33
title: "Feature: <title>"
4-
labels: ["enhancement"]
4+
labels: ["type-feature"]
55
assignees: []
66

77
body:

.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/documentation-links.yml

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

.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/action@v3.0.0
15+
- uses: pre-commit/action@v3.0.1

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,5 @@ celerybeat-schedule
9090
# Generated CSV and SVG files
9191
include/branches.csv
9292
include/end-of-life.csv
93-
include/release-cycle.svg
94-
include/release-cycle-all.svg
93+
_static/release-cycle.svg
94+
_static/release-cycle-all.svg

.pre-commit-config.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,12 @@ repos:
77
args: [--exit-non-zero-on-fix]
88
- id: ruff-format
99
name: Run Ruff (format)
10-
args: [--check]
1110

1211
- repo: https://github.com/pre-commit/pre-commit-hooks
1312
rev: v4.5.0
1413
hooks:
1514
- id: check-case-conflict
1615
- id: check-merge-conflict
17-
- id: check-json
1816
- id: check-yaml
1917
- id: debug-statements
2018
- id: end-of-file-fixer

0 commit comments

Comments
 (0)