diff options
author | Thomas Li <47963215+lithomas1@users.noreply.github.com> | 2021-12-05 08:07:20 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-05 08:07:20 -0800 |
commit | e0b1d7879648b91f281393502cf39bc3749ca3eb (patch) | |
tree | 651843cc624487d77230be30ef434c3d4ef06141 | |
parent | a81535a364ca2d5aa277977e53c4e2302cae8ea2 (diff) | |
download | numpy-e0b1d7879648b91f281393502cf39bc3749ca3eb.tar.gz |
MAINT: Pin OS versions when building wheels [wheel build]
-rw-r--r-- | .github/workflows/wheels.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 0268e7ce3..3bed03c88 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -50,24 +50,24 @@ jobs: matrix: include: # manylinux builds - - os: ubuntu-latest + - os: ubuntu-20.04 python: "38" platform: manylinux_x86_64 - - os: ubuntu-latest + - os: ubuntu-20.04 python: "39" platform: manylinux_x86_64 - - os: ubuntu-latest + - os: ubuntu-20.04 python: "310" platform: manylinux_x86_64 # macos builds - - os: macos-latest + - os: macos-10.15 python: "38" platform: macosx_x86_64 - - os: macos-latest + - os: macos-10.15 python: "39" platform: macosx_x86_64 - - os: macos-latest + - os: macos-10.15 python: "310" platform: macosx_x86_64 |