summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml7
-rw-r--r--.github/workflows/wheel.yml6
2 files changed, 6 insertions, 7 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 2a01926..2a796aa 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -10,17 +10,17 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, windows-2022, macos-10.15]
- py: ["3.10", "3.9", "3.8", "3.7", "3.6"]
+ py: ["3.11-dev", "3.10", "3.9", "3.8", "3.7", "3.6"]
runs-on: ${{ matrix.os }}
name: Run test with Python ${{ matrix.py }} on ${{ matrix.os }}
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Set up Python
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v3
with:
python-version: ${{ matrix.py }}
cache: "pip"
@@ -28,7 +28,6 @@ jobs:
- name: Build
shell: bash
run: |
- python -m pip install -U pip
pip install -r requirements.txt pytest
make cython
pip install .
diff --git a/.github/workflows/wheel.yml b/.github/workflows/wheel.yml
index 5627b5f..541654d 100644
--- a/.github/workflows/wheel.yml
+++ b/.github/workflows/wheel.yml
@@ -14,7 +14,7 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Set up QEMU
if: runner.os == 'Linux'
@@ -23,7 +23,7 @@ jobs:
platforms: arm64
- name: Set up Python 3.9
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v3
with:
python-version: 3.9
cache: "pip"
@@ -35,7 +35,7 @@ jobs:
make cython
- name: Build
- uses: pypa/cibuildwheel@v2.2.2
+ uses: pypa/cibuildwheel@v2.5.0
env:
CIBW_TEST_REQUIRES: "pytest"
CIBW_TEST_COMMAND: "pytest {package}/test"