Update README and setup.py to indicate this is a fork. #4
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: Test | |
on: [push, pull_request] | |
env: | |
FORCE_COLOR: 1 | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12-dev"] | |
cython-version: ["0.29", "3.0"] | |
os: [ubuntu-20.04] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Linux dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libattr1-dev libfuse-dev | |
sudo apt-get install -y pkg-config gcc | |
- name: Install Python dependencies (misc) | |
run: pip install setuptools pytest sphinx | |
- name: Install Python dependencies (Cython 0.29) | |
if: ${{ matrix.cython-version == '0.29' }} | |
run: pip install "Cython<3" | |
- name: Install Python dependencies (Cython 3.0) | |
if: ${{ matrix.cython-version == '3.0' }} | |
run: pip install "Cython>=3" | |
- name: Test | |
run: | | |
set -e | |
python setup.py build_cython | |
python setup.py build_ext --inplace | |
pytest -v -rs test/ | |
sphinx-build -b html rst doc/html |