Skip to content

Commit

Permalink
Test with Cython 0.29 and 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eriknw committed Jul 24, 2023
1 parent f402d74 commit df944c8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version:
- "3.7"
- "3.8"
Expand All @@ -25,6 +25,9 @@ jobs:
- "pypy3.8"
# - "pypy3.9"
# - "pypy3.10"
cython-version:
- "0.29"
- "3.0"
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -35,7 +38,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install cython pytest
pip install cython==${{ cython-version }} pytest
pip install git+https://github.com/pytoolz/toolz.git
python setup.py build_ext --inplace --with-cython
pip install -e .
Expand Down

0 comments on commit df944c8

Please sign in to comment.