Skip to content

Commit

Permalink
fixes for Python 3.11 build (#1) (#9)
Browse files Browse the repository at this point in the history
* small patches for CPython 3.11 build

* add GitHub Actions workflow
  • Loading branch information
zacharyburnett committed Nov 17, 2022
1 parent 52eab3d commit db18a2c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI

on: [ push ]

jobs:
build:
name: build (Python ${{ matrix.python }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python: [ '3.8', '3.9', '3.10', '3.11' ]
os: [ ubuntu-latest, macos-latest ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- run: pip install .
8 changes: 8 additions & 0 deletions src/_region_filter.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit db18a2c

Please sign in to comment.