File tree Expand file tree Collapse file tree 6 files changed +16
-6
lines changed Expand file tree Collapse file tree 6 files changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ concurrency:
99 group : ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number || github.sha }}
1010 cancel-in-progress : ${{ github.event_name == 'pull_request' }}
1111
12+ env :
13+ FORCE_COLOR : 1
14+
1215jobs :
1316 pythonbuild :
1417 runs-on : ' macos-13'
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ concurrency:
88 group : ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number || github.sha }}
99 cancel-in-progress : ${{ github.event_name == 'pull_request' }}
1010
11+ env :
12+ FORCE_COLOR : 1
13+
1114jobs :
1215 check :
1316 runs-on : " ubuntu-latest"
Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ concurrency:
99 group : ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number || github.sha }}
1010 cancel-in-progress : ${{ github.event_name == 'pull_request' }}
1111
12+ env :
13+ FORCE_COLOR : 1
14+
1215jobs :
1316 pythonbuild :
1417 runs-on : ubuntu-22.04
Original file line number Diff line number Diff line change 1515 required : false
1616 type : boolean
1717
18+ env :
19+ FORCE_COLOR : 1
20+
1821permissions :
1922 contents : write
2023 packages : write
Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ concurrency:
99 group : ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number || github.sha }}
1010 cancel-in-progress : ${{ github.event_name == 'pull_request' }}
1111
12+ env :
13+ FORCE_COLOR : 1
14+
1215jobs :
1316 pythonbuild :
1417 runs-on : ' windows-2022'
Original file line number Diff line number Diff line change @@ -1493,12 +1493,7 @@ fn validate_extension_modules(
14931493 }
14941494 }
14951495
1496- if ( is_linux || is_macos)
1497- && matches ! (
1498- python_major_minor,
1499- "3.9" | "3.10" | "3.11" | "3.12" | "3.13"
1500- )
1501- {
1496+ if ( is_linux || is_macos) {
15021497 wanted. extend ( [
15031498 "_testbuffer" ,
15041499 "_testimportmultiple" ,
You can’t perform that action at this time.
0 commit comments