Skip to content

Update Cython 3 and Numpy 2 #127

Update Cython 3 and Numpy 2

Update Cython 3 and Numpy 2 #127

Workflow file for this run

#
# Test that the package can be built using modern PEP 517 build package method: `python -m build --wheel`
# https://pypa-build.readthedocs.io/en/stable/
#
name: PEP 517
on:
pull_request:
push:
branches:
- master
defaults:
run:
shell: bash
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-20.04, ubuntu-22.04, windows-latest, macos-latest ]
python: [ "3.9", "3.10", "3.11", "3.12" ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install build dependencies
run: |
python -m pip install build
- name: Build eigency
run: |
python -m build --wheel