Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions eng/pipelines/build-whl-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,25 @@ jobs:
shortPyVer: '313'
# Always use universal2 for macOS
targetArch: 'universal2'

# Python 3.12 (universal2 for both arm64 and x86_64)
py312_universal2:
pythonVersion: '3.12'
shortPyVer: '312'
targetArch: 'universal2'

# Python 3.11 (universal2 for both arm64 and x86_64)
py311_universal2:
pythonVersion: '3.11'
shortPyVer: '311'
targetArch: 'universal2'

# Python 3.10 (universal2 for both arm64 and x86_64)
py310_universal2:
pythonVersion: '3.10'
shortPyVer: '310'
targetArch: 'universal2'

steps:
# Use correct Python version and architecture for the current job
- task: UsePythonVersion@0
Expand Down
Loading