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:
9
9
group : ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number || github.sha }}
10
10
cancel-in-progress : ${{ github.event_name == 'pull_request' }}
11
11
12
+ env :
13
+ FORCE_COLOR : 1
14
+
12
15
jobs :
13
16
pythonbuild :
14
17
runs-on : ' macos-13'
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ concurrency:
8
8
group : ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number || github.sha }}
9
9
cancel-in-progress : ${{ github.event_name == 'pull_request' }}
10
10
11
+ env :
12
+ FORCE_COLOR : 1
13
+
11
14
jobs :
12
15
check :
13
16
runs-on : " ubuntu-latest"
Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ concurrency:
9
9
group : ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number || github.sha }}
10
10
cancel-in-progress : ${{ github.event_name == 'pull_request' }}
11
11
12
+ env :
13
+ FORCE_COLOR : 1
14
+
12
15
jobs :
13
16
pythonbuild :
14
17
runs-on : ubuntu-22.04
Original file line number Diff line number Diff line change 15
15
required : false
16
16
type : boolean
17
17
18
+ env :
19
+ FORCE_COLOR : 1
20
+
18
21
permissions :
19
22
contents : write
20
23
packages : write
Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ concurrency:
9
9
group : ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number || github.sha }}
10
10
cancel-in-progress : ${{ github.event_name == 'pull_request' }}
11
11
12
+ env :
13
+ FORCE_COLOR : 1
14
+
12
15
jobs :
13
16
pythonbuild :
14
17
runs-on : ' windows-2022'
Original file line number Diff line number Diff line change @@ -1493,12 +1493,7 @@ fn validate_extension_modules(
1493
1493
}
1494
1494
}
1495
1495
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) {
1502
1497
wanted. extend ( [
1503
1498
"_testbuffer" ,
1504
1499
"_testimportmultiple" ,
You can’t perform that action at this time.
0 commit comments