Skip to content

Commit

Permalink
add PY313 build pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
leofang committed Dec 6, 2024
1 parent 0d554f0 commit 05ec089
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,9 @@ runs:
fi
if [[ "${{ inputs.host-platform }}" == linux* ]]; then
if [[ "${{ inputs.python-version }}" == "3.12" ]]; then
if [[ "${{ inputs.python-version }}" == "3.13" ]]; then
CIBW_BUILD='cp313-manylinux*'
elif [[ "${{ inputs.python-version }}" == "3.12" ]]; then
CIBW_BUILD='cp312-manylinux*'
elif [[ "${{ inputs.python-version }}" == "3.11" ]]; then
CIBW_BUILD='cp311-manylinux*'
Expand All @@ -166,7 +168,9 @@ runs:
fi
REPO_DIR=$(pwd)
elif [[ "${{ inputs.host-platform }}" == win* ]]; then
if [[ "${{ inputs.python-version }}" == "3.12" ]]; then
if [[ "${{ inputs.python-version }}" == "3.13" ]]; then
CIBW_BUILD='cp313-win_amd64'
elif [[ "${{ inputs.python-version }}" == "3.12" ]]; then
CIBW_BUILD='cp312-win_amd64'
elif [[ "${{ inputs.python-version }}" == "3.11" ]]; then
CIBW_BUILD='cp311-win_amd64'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci-gh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
upload-enabled:
- false
python-version:
- "3.13"
- "3.12"
- "3.11"
- "3.10"
Expand Down

0 comments on commit 05ec089

Please sign in to comment.