Skip to content

Commit

Permalink
Support for Python 3.10 (#10)
Browse files Browse the repository at this point in the history
* generate c code with newer version of cython

* support for 3.10 both for dist and test
  • Loading branch information
simedw authored Jul 13, 2022
1 parent 3f6f99c commit 64e40b4
Show file tree
Hide file tree
Showing 7 changed files with 6,573 additions and 2,512 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9, '3.10']

steps:
- uses: actions/checkout@v2
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/pythonpublish_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@ name: Upload Python Package (macOS)
on:
release:
types: [created]
workflow_dispatch:

jobs:
deploy:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
architecture: [x64]
python-version: [3.6, 3.7, 3.8, 3.9, 3.10]
architecture: [x64, arm64]
python-version: [3.7, 3.8, 3.9, '3.10']

steps:
- uses: actions/checkout@v2
Expand Down
Loading

0 comments on commit 64e40b4

Please sign in to comment.