File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -155,7 +155,9 @@ runs:
155
155
fi
156
156
157
157
if [[ "${{ inputs.host-platform }}" == linux* ]]; then
158
- if [[ "${{ inputs.python-version }}" == "3.12" ]]; then
158
+ if [[ "${{ inputs.python-version }}" == "3.13" ]]; then
159
+ CIBW_BUILD='cp313-manylinux*'
160
+ elif [[ "${{ inputs.python-version }}" == "3.12" ]]; then
159
161
CIBW_BUILD='cp312-manylinux*'
160
162
elif [[ "${{ inputs.python-version }}" == "3.11" ]]; then
161
163
CIBW_BUILD='cp311-manylinux*'
@@ -166,7 +168,9 @@ runs:
166
168
fi
167
169
REPO_DIR=$(pwd)
168
170
elif [[ "${{ inputs.host-platform }}" == win* ]]; then
169
- if [[ "${{ inputs.python-version }}" == "3.12" ]]; then
171
+ if [[ "${{ inputs.python-version }}" == "3.13" ]]; then
172
+ CIBW_BUILD='cp313-win_amd64'
173
+ elif [[ "${{ inputs.python-version }}" == "3.12" ]]; then
170
174
CIBW_BUILD='cp312-win_amd64'
171
175
elif [[ "${{ inputs.python-version }}" == "3.11" ]]; then
172
176
CIBW_BUILD='cp311-win_amd64'
Original file line number Diff line number Diff line change 27
27
upload-enabled :
28
28
- false
29
29
python-version :
30
+ - " 3.13"
30
31
- " 3.12"
31
32
- " 3.11"
32
33
- " 3.10"
You can’t perform that action at this time.
0 commit comments