Skip to content

Commit 7b5e5b2

Browse files
authored
Merge branch 'main' into performance/list_repeat_v2_specialized
2 parents 640643e + 707839b commit 7b5e5b2

File tree

731 files changed

+19796
-9598
lines changed

Some content is hidden

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

731 files changed

+19796
-9598
lines changed

.azure-pipelines/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
variables:
22
coverage: false
33

4-
trigger: ['main', '3.10', '3.9', '3.8', '3.7']
4+
trigger: ['main', '3.11', '3.10', '3.9', '3.8', '3.7']
55

66
jobs:
77
- job: Prebuild

.azure-pipelines/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
variables:
22
coverage: false
33

4-
pr: ['main', '3.10', '3.9', '3.8', '3.7']
4+
pr: ['main', '3.11', '3.10', '3.9', '3.8', '3.7']
55

66
jobs:
77
- job: Prebuild

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ Doc/data/stable_abi.dat generated
6868
Doc/library/token-list.inc generated
6969
Include/internal/pycore_ast.h generated
7070
Include/internal/pycore_ast_state.h generated
71+
Include/internal/pycore_opcode.h generated
7172
Include/opcode.h generated
7273
Include/token.h generated
7374
Lib/keyword.py generated

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Lib/ast.py @isidentical
9898
/Lib/unittest/test/testmock/* @cjw296
9999

100100
# SQLite 3
101-
**/*sqlite* @berkerpeksag
101+
**/*sqlite* @berkerpeksag @erlend-aasland
102102

103103
# subprocess
104104
/Lib/subprocess.py @gpshead

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,8 @@ updates:
77
labels:
88
- "skip issue"
99
- "skip news"
10+
ignore:
11+
- dependency-name: "*"
12+
update-types:
13+
- "version-update:semver-minor"
14+
- "version-update:semver-patch"

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,15 @@ on:
88
push:
99
branches:
1010
- 'main'
11+
- '3.11'
1112
- '3.10'
1213
- '3.9'
1314
- '3.8'
1415
- '3.7'
1516
pull_request:
1617
branches:
1718
- 'main'
19+
- '3.11'
1820
- '3.10'
1921
- '3.9'
2022
- '3.8'
@@ -185,7 +187,7 @@ jobs:
185187
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
186188
- name: 'Restore OpenSSL build'
187189
id: cache-openssl
188-
uses: actions/cache@v3.0.1
190+
uses: actions/cache@v3
189191
with:
190192
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
191193
key: ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -248,7 +250,7 @@ jobs:
248250
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
249251
- name: 'Restore OpenSSL build'
250252
id: cache-openssl
251-
uses: actions/cache@v3.0.1
253+
uses: actions/cache@v3
252254
with:
253255
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
254256
key: ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -292,7 +294,7 @@ jobs:
292294
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
293295
- name: 'Restore OpenSSL build'
294296
id: cache-openssl
295-
uses: actions/cache@v3.0.1
297+
uses: actions/cache@v3
296298
with:
297299
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
298300
key: ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}

.github/workflows/build_msi.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
push:
66
branches:
77
- 'main'
8+
- '3.11'
89
- '3.10'
910
- '3.9'
1011
- '3.8'
@@ -14,6 +15,7 @@ on:
1415
pull_request:
1516
branches:
1617
- 'main'
18+
- '3.11'
1719
- '3.10'
1820
- '3.9'
1921
- '3.8'

.github/workflows/doc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
#push:
66
# branches:
77
# - 'main'
8+
# - '3.11'
89
# - '3.10'
910
# - '3.9'
1011
# - '3.8'
@@ -14,6 +15,7 @@ on:
1415
pull_request:
1516
branches:
1617
- 'main'
18+
- '3.11'
1719
- '3.10'
1820
- '3.9'
1921
- '3.8'

.github/workflows/new-bugs-announce-notifier.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
notify-new-bugs-announce:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/setup-node@v2
12+
- uses: actions/setup-node@v3
1313
with:
1414
node-version: 14
1515
- run: npm install mailgun.js form-data
1616
- name: Send notification
17-
uses: actions/github-script@v5
17+
uses: actions/github-script@v6
1818
env:
1919
MAILGUN_API_KEY: ${{ secrets.PSF_MAILGUN_KEY }}
2020
with:

.github/workflows/stale.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@ jobs:
1515

1616
steps:
1717
- name: "Check PRs"
18-
uses: actions/stale@v4
18+
uses: actions/stale@v5
1919
with:
2020
repo-token: ${{ secrets.GITHUB_TOKEN }}
2121
stale-pr-message: 'This PR is stale because it has been open for 30 days with no activity.'
2222
stale-pr-label: 'stale'
23-
days-before-stale: 30
23+
days-before-issue-stale: -1
24+
days-before-pr-stale: 30
2425
days-before-close: -1
2526
ascending: true
2627
operations-per-run: 120

0 commit comments

Comments
 (0)