Skip to content

Commit 05ec089

Browse files
committed
add PY313 build pipelines
1 parent 0d554f0 commit 05ec089

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/actions/setup/action.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,9 @@ runs:
155155
fi
156156
157157
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
159161
CIBW_BUILD='cp312-manylinux*'
160162
elif [[ "${{ inputs.python-version }}" == "3.11" ]]; then
161163
CIBW_BUILD='cp311-manylinux*'
@@ -166,7 +168,9 @@ runs:
166168
fi
167169
REPO_DIR=$(pwd)
168170
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
170174
CIBW_BUILD='cp312-win_amd64'
171175
elif [[ "${{ inputs.python-version }}" == "3.11" ]]; then
172176
CIBW_BUILD='cp311-win_amd64'

.github/workflows/ci-gh.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
upload-enabled:
2828
- false
2929
python-version:
30+
- "3.13"
3031
- "3.12"
3132
- "3.11"
3233
- "3.10"

0 commit comments

Comments
 (0)