summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Pudeyev <p@users.noreply.github.com>2022-03-11 09:06:42 -0500
committerGitHub <noreply@github.com>2022-03-11 09:06:42 -0500
commite5a5e7af76e11aea0bcac5912d01791855407190 (patch)
tree232b9daa20f4482a377d42fc4d24f4076cd8602c
parent55a09f76094237b436c7d039340a343bf922f90e (diff)
parentea165ad20aec89872bc9e5898be71aa82726d2b9 (diff)
downloadpycurl-e5a5e7af76e11aea0bcac5912d01791855407190.tar.gz
Merge pull request #743 from mcoughlin/wheels
Let CI build 3.7-3.10
-rw-r--r--.github/workflows/cibuildwheel.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml
index b5d886c..d50c40c 100644
--- a/.github/workflows/cibuildwheel.yml
+++ b/.github/workflows/cibuildwheel.yml
@@ -13,12 +13,13 @@ jobs:
fail-fast: false
matrix:
arch: [x86_64, aarch64]
+ python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
- python-version: 3.7
+ python-version: ${{ matrix.python-version }}
- name: Set up QEMU
if: ${{ matrix.arch == 'aarch64' }}
uses: docker/setup-qemu-action@v1