Use method_getNumberOfArguments
, method_copyArgumentType
and method_copyReturnType
to define argument and return types
#161
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: Python package | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: "build (${{ matrix.runs_on }}, ${{ matrix.python }} - Cython ${{ matrix.cython }})" | |
runs-on: ${{ matrix.runs_on }} | |
strategy: | |
matrix: | |
# macos-latest (ATM macos-14) runs on Apple Silicon, | |
# macos-13 runs on Intel | |
runs_on: ['macos-latest', 'macos-13'] | |
python: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
cython: | |
- "<3" | |
- ">=3" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Force Cython version | |
run: sed -i.bak 's/"Cython"/"Cython${{matrix.cython}}"/' pyproject.toml | |
- name: Install project | |
run: | | |
pip install cython pytest setuptools | |
pip install . | |
- name: Test with pytest | |
run: | | |
make test_lib | |
make | |
make tests |