Bump version to 2.24.21 #2790
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
name: Run source distribution tests | |
on: | |
push: | |
pull_request: | |
branches-ignore: [ master ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
# pinning specific versions of 3.9 and 3.10 until we upgrade to PyInstaller 6 | |
python-version: ["3.8", "3.9.20", "3.10.15", "3.11", "3.12"] | |
# macOS pinned to 13 due to 14+ defaulting to arm64 hardware | |
os: [ubuntu-latest, macOS-13, windows-latest] | |
exclude: # setup-python doesn't build for Windows, and these are source-only | |
- os: windows-latest | |
python-version: "3.9.20" | |
- os: windows-latest | |
python-version: "3.10.15" | |
include: # but add back earlier patch versions for Windows | |
- os: windows-latest | |
python-version: "3.9" | |
- os: windows-latest | |
python-version: "3.10" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python scripts/ci/install | |
python scripts/ci/install-build-system | |
python -m pip freeze --all | |
- name: Run build-system tests | |
run: | | |
pip uninstall -y awscli | |
python scripts/ci/run-build-system-tests |