Skip to content

Commit 7115de2

Browse files
authored
Merge branch 'main' into clinic-syslog
2 parents fd6e589 + 8bc356a commit 7115de2

File tree

332 files changed

+12208
-7586
lines changed

Some content is hidden

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

332 files changed

+12208
-7586
lines changed

.azure-pipelines/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
variables:
5858
testRunTitle: '$(build.sourceBranchName)-linux'
5959
testRunPlatform: linux
60-
openssl_version: 1.1.1n
60+
openssl_version: 1.1.1q
6161

6262
steps:
6363
- template: ./posix-steps.yml
@@ -83,7 +83,7 @@ jobs:
8383
variables:
8484
testRunTitle: '$(Build.SourceBranchName)-linux-coverage'
8585
testRunPlatform: linux-coverage
86-
openssl_version: 1.1.1n
86+
openssl_version: 1.1.1q
8787

8888
steps:
8989
- template: ./posix-steps.yml

.azure-pipelines/find-tools.yml

-26
This file was deleted.

.azure-pipelines/libffi-build.yml

-86
This file was deleted.

.azure-pipelines/openssl-build.yml

-110
This file was deleted.

.azure-pipelines/pr.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
variables:
5858
testRunTitle: '$(system.pullRequest.TargetBranch)-linux'
5959
testRunPlatform: linux
60-
openssl_version: 1.1.1n
60+
openssl_version: 1.1.1q
6161

6262
steps:
6363
- template: ./posix-steps.yml
@@ -83,7 +83,7 @@ jobs:
8383
variables:
8484
testRunTitle: '$(Build.SourceBranchName)-linux-coverage'
8585
testRunPlatform: linux-coverage
86-
openssl_version: 1.1.1n
86+
openssl_version: 1.1.1q
8787

8888
steps:
8989
- template: ./posix-steps.yml

.azure-pipelines/tcltk-build.yml

-71
This file was deleted.

.github/CODEOWNERS

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
# https://git-scm.com/docs/gitignore#_pattern_format
66

77
# asyncio
8-
**/*asyncio* @1st1 @asvetlov
8+
**/*asyncio* @1st1 @asvetlov @gvanrossum
99

1010
# Core
1111
**/*context* @1st1
12-
**/*genobject* @1st1 @markshannon
12+
**/*genobject* @markshannon
1313
**/*hamt* @1st1
1414
Objects/set* @rhettinger
1515
Objects/dict* @methane @markshannon

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ jobs:
175175
needs: check_source
176176
if: needs.check_source.outputs.run_tests == 'true'
177177
env:
178-
OPENSSL_VER: 1.1.1n
178+
OPENSSL_VER: 1.1.1q
179179
PYTHONSTRICTEXTENSIONBUILD: 1
180180
steps:
181181
- uses: actions/checkout@v3
@@ -234,7 +234,7 @@ jobs:
234234
strategy:
235235
fail-fast: false
236236
matrix:
237-
openssl_ver: [1.1.1n, 3.0.2]
237+
openssl_ver: [1.1.1q, 3.0.5]
238238
env:
239239
OPENSSL_VER: ${{ matrix.openssl_ver }}
240240
MULTISSL_DIR: ${{ github.workspace }}/multissl
@@ -281,7 +281,7 @@ jobs:
281281
needs: check_source
282282
if: needs.check_source.outputs.run_tests == 'true'
283283
env:
284-
OPENSSL_VER: 1.1.1n
284+
OPENSSL_VER: 1.1.1q
285285
PYTHONSTRICTEXTENSIONBUILD: 1
286286
ASAN_OPTIONS: detect_leaks=0:allocator_may_return_null=1:handle_segv=0
287287
steps:

.github/workflows/project-updater.yml

+12-4
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,20 @@ on:
88

99
jobs:
1010
add-to-project:
11-
name: Add to the Release and Deferred Blocker project
11+
name: Add issues to projects
1212
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
include:
16+
# if an issue has any of these labels, it will be added
17+
# to the corresponding project
18+
- { project: 2, label: "release-blocker, deferred-blocker" }
19+
- { project: 3, label: expert-subinterpreters }
20+
- { project: 29, label: expert-asyncio }
21+
1322
steps:
1423
- uses: actions/[email protected]
1524
with:
16-
project-url: https://github.com/orgs/python/projects/2
25+
project-url: https://github.com/orgs/python/projects/${{ matrix.project }}
1726
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
18-
labeled: release-blocker, deferred-blocker
19-
label-operator: OR
27+
labeled: ${{ matrix.label }}

0 commit comments

Comments
 (0)