Skip to content
This repository has been archived by the owner on Apr 5, 2023. It is now read-only.

Commit

Permalink
Attempt to do CI on Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
bmerry committed Sep 2, 2021
1 parent a652b4f commit 760a282
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ jobs:
fail-fast: false
matrix:
python-version:
- 3.6
- 3.7
- 3.8
- 3.9
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10.0-rc.1"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
Expand All @@ -21,6 +22,7 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: sudo apt-get install -y libffi-dev
- run: pip install -U pip setuptools wheel
- run: pip install -r requirements.txt
- run: flake8
Expand All @@ -35,9 +37,6 @@ jobs:
submodules: recursive
- name: Build wheels
uses: pypa/[email protected]
env:
# Build against Python 3.10 release candidate doesn't work yet
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.6,<3.10"
- uses: actions/upload-artifact@v2
with:
path: ./wheelhouse/*.whl

0 comments on commit 760a282

Please sign in to comment.