Skip to content

try 3.12

try 3.12 #62

Workflow file for this run

name: Pull Request
# run test within the manylinux container: linux is quickest to run but needs access to the right system libs
# runs tests on all python versions
# push_master.yml tests all platforms but only py3.8 (lowest supported version)
on:
pull_request:
branches:
- 'master'
paths-ignore:
- '*.md'
- '*.sh'
- '*.ipynb'
- '*.*json'
jobs:
build_wheels:
name: PR - cp*, ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lint & Style Check
run: |
python -m pip install -r dev-requirements.txt
pre-commit run --all-files --show-diff-on-failure
- uses: pypa/cibuildwheel@v2.17.0
env:
CIBW_BUILD: cpcp38* cpcp312*
MACOSX_DEPLOYMENT_TARGET: 10.15