python info #25345
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GENERATED, DO NOT EDIT! | |
# To change, edit `src/python/pants_release/generate_github_workflows.py` and run: | |
# ./pants run src/python/pants_release/generate_github_workflows.py | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
env: | |
PANTS_CONFIG_FILES: +['pants.ci.toml'] | |
RUST_BACKTRACE: all | |
jobs: | |
macos13_x86_64: | |
name: MacOS13 | |
runs-on: | |
- macos-13 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 10 | |
- name: Set up Python 3.7, 3.8, 3.9, 3.10, 3.12, 3.13, 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.7 | |
3.8 | |
3.9 | |
3.10 | |
3.12 | |
3.13 | |
3.11' | |
- run: | | |
python -VV | |
file $(which python) | |
build_wheels_macos14_arm64: | |
name: MacOS14 | |
runs-on: | |
- macos-14 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 10 | |
- name: Set up Python 3.9, 3.10, 3.12, 3.13, 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9 | |
3.10 | |
3.12 | |
3.13 | |
3.11' | |
- run: | | |
python -VV | |
file $(which python) |