Skip to content

Commit

Permalink
support python 3.12 for packaging pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
wenbingl committed Feb 13, 2024
1 parent 307e712 commit 4735f6b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .pipelines/templates/onebranch-windows-build-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ stages:
type: windows

variables:
CIBW_BUILD: cp3{8,9,10,11}-*amd64
CIBW_BUILD: cp3{8,9,10,11,12}-*amd64
CIBW_ARCHS: AMD64
CIBW_ENVIRONMENT: "${{ parameters.CibwEnv }}"
CIBW_BUILD_VERBOSITY: 1
Expand Down
4 changes: 2 additions & 2 deletions .pipelines/wheels_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
timeoutInMinutes: 180
pool: {name: 'Azure-Pipelines-EO-Ubuntu-2004-aiinfra'}
variables:
CIBW_BUILD: "cp3{8,9,10,11}-*"
CIBW_BUILD: "cp3{8,9,10,11,12}-*"
CIBW_ENVIRONMENT: "${{ parameters.ExtraEnv }}"

steps:
Expand All @@ -29,7 +29,7 @@ jobs:
timeoutInMinutes: 180
pool: {name: 'Azure-Pipelines-EO-Ubuntu-2004-aiinfra'}
variables:
CIBW_BUILD: "cp3{8,9,10,11}-*"
CIBW_BUILD: "cp3{8,9,10,11,12}-*"
CIBW_SKIP: "*musllinux_aarch64*"
# AzureOp doesn't support aaarch64 yet.
# CIBW_ENVIRONMENT: "${{ parameters.ExtraEnv }}"
Expand Down
2 changes: 1 addition & 1 deletion .pipelines/wheels_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
pool:
vmImage: 'macOS-13'
variables:
CIBW_BUILD: "cp3{8,9,10,11}-*"
CIBW_BUILD: "cp3{8,9,10,11,12}-*"
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
# Skip trying to test arm64 builds on Intel Macs
# CIBW_TEST_SKIP: "*-macosx_arm64 *-macosx_universal2:arm64"
Expand Down
2 changes: 1 addition & 1 deletion .pipelines/wheels_win32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
timeoutInMinutes: 120
pool: {name: 'onnxruntime-Win-CPU-2022'}
variables:
CIBW_BUILD: "cp3{8,9,10,11}-*amd64"
CIBW_BUILD: "cp3{8,9,10,11,12}-*amd64"
CIBW_ENVIRONMENT: "${{ parameters.ExtraEnv }}"

steps:
Expand Down

0 comments on commit 4735f6b

Please sign in to comment.