File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 13
13
strategy :
14
14
fail-fast : false
15
15
matrix :
16
- python-version : [3.6 , 3.7 , 3.8 ]
16
+ python-version : [3.7 , 3.8 , 3.9 ]
17
17
arch : ['x64', 'x86']
18
18
19
19
steps :
49
49
strategy :
50
50
fail-fast : false
51
51
matrix :
52
- python-version : [3.6 , 3.7 , 3.8 ]
52
+ python-version : [3.7 , 3.8 , 3.9 ]
53
53
54
54
steps :
55
55
- uses : actions/checkout@v2
83
83
strategy :
84
84
fail-fast : false
85
85
matrix :
86
- python-version : [3.6 , 3.7 , 3.8 ]
86
+ python-version : [3.7 , 3.8 , 3.9 ]
87
87
88
88
steps :
89
89
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change 9
9
name : Build wheels for ${{ matrix.os }}
10
10
runs-on : ${{ matrix.os }}
11
11
env :
12
- CIBW_BUILD : " cp36-* cp37-* cp38-*"
12
+ CIBW_BUILD : " cp3*-*"
13
+ CIBW_SKIP : " cp35-*"
13
14
strategy :
15
+ fail-fast : false
14
16
matrix :
15
17
os : [ubuntu-latest, windows-latest, macos-latest]
16
- python-version : [3.8 ]
18
+ python-version : [3.9 ]
17
19
18
20
steps :
19
21
- uses : actions/checkout@v2
28
30
- name : Install cibuildwheel
29
31
30
32
run : |
31
- python -m pip install cibuildwheel==1.4.2
33
+ python -m pip install cibuildwheel==1.10.0
32
34
33
35
- name : Build wheels
34
36
run : |
Original file line number Diff line number Diff line change @@ -51,6 +51,9 @@ def get_mscv_args():
51
51
'/D_UNICODE' ,
52
52
'/DUNICODE' ,
53
53
]
54
+ if sys .version_info .major == 3 and sys .version_info .minor >= 9 :
55
+ flags .remove ('/wd"4335"' )
56
+
54
57
# Set the architecture based on system architecture and Python
55
58
is_x64 = platform .architecture ()[0 ] == '64bit'
56
59
if is_x64 and sys .maxsize > 2 ** 32 :
You can’t perform that action at this time.
0 commit comments