Skip to content

test207

test207 #192

Workflow file for this run

# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) Contributors to the OpenEXR Project.
name: Python Wheels
on:
push:
branches-ignore:
- RB-2.*
tags-ignore:
- v1.*
- v2.*
paths:
- '**'
- '!**.md'
- '!website/**'
- '!bazel/**'
pull_request:
branches-ignore:
- RB-2.*
tags-ignore:
- v1.*
- v2.*
paths:
- '**'
- '!**.md'
- '!website/**'
- '!bazel/**'
permissions:
contents: read
jobs:
build_wheels:
name: Build Wheels on ${{ matrix.os }} for Python 3.${{ matrix.python-minor }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]

Check failure on line 39 in .github/workflows/python-wheels.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/python-wheels.yml

Invalid workflow file

You have an error in your yaml syntax on line 39
python-minor: ['7', '8, '9', '10', '11', '12']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Python 3.${{ matrix.python-minor }}
uses: actions/setup-python@v4
with:
python-version: 3.${{ matrix.python-minor }}
- name: Build wheel
uses: pypa/cibuildwheel@v2.16
env:
# CIBW_BUILD: 'cp3${{ matrix.python-minor }}-*'
CIBW_ARCHS_MACOS: universal2
CIBW_ARCHS_WINDOWS: auto ARM64
- name: Verify clean directory
run: git diff --exit-code
shell: bash
- name: Updload artifact
uses: actions/upload-artifact@v3
with:
path: wheelhouse/*.whl