Skip to content

Commit

Permalink
[ENH] Update wheels (#610)
Browse files Browse the repository at this point in the history
* update wheels

* test with cibuildwheel 2.16.5
  • Loading branch information
jgranley committed Feb 29, 2024
1 parent 180b83b commit 49cff0e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/wheels.yml
Expand Up @@ -4,13 +4,13 @@ on:
push:
branches:
- master
- cortex
- torch
tags:
- v*
pull_request:
branches:
- master
- cortex
- torch

jobs:
build_wheels:
Expand All @@ -25,23 +25,23 @@ jobs:
- uses: actions/checkout@v2

- name: Build Py3.11 wheels
uses: pypa/cibuildwheel@v2.16.2
uses: pypa/cibuildwheel@v2.16.5
env:
CIBW_BEFORE_BUILD_LINUX: "yum install -y python-devel zlib-devel libjpeg-turbo-devel wget && python -m pip install -U pip pillow numpy && python -m pip install -r requirements.txt && python -m pip install -e ."
CIBW_BEFORE_BUILD: "python -m pip install -U pip numpy pillow && python -m pip install -r requirements.txt && python -m pip install -e ."
CIBW_BUILD: "cp311-*"
CIBW_SKIP: "*-manylinux_i686 cp311-win32 *musllinux*"

- name: Build Py3.10 wheels
uses: pypa/cibuildwheel@v2.16.2
uses: pypa/cibuildwheel@v2.16.5
env:
CIBW_BEFORE_BUILD_LINUX: "yum install -y python-devel zlib-devel libjpeg-turbo-devel wget && python -m pip install -U pip pillow numpy && python -m pip install -r requirements.txt && python -m pip install -e ."
CIBW_BEFORE_BUILD: "python -m pip install -U pip numpy pillow && python -m pip install -r requirements.txt && python -m pip install -e ."
CIBW_BUILD: "cp310-*"
CIBW_SKIP: "*-manylinux_i686 cp310-win32 *musllinux*"

- name: Build Py3.8-3.9 wheels
uses: pypa/cibuildwheel@v2.16.2
uses: pypa/cibuildwheel@v2.16.5
env:
CIBW_BEFORE_BUILD: "python -m pip install -U pip numpy && python -m pip install Pillow==8.3.2 && python -m pip install -r requirements.txt && python -m pip install -e ."
CIBW_BUILD: "cp39-* cp38-*"
Expand Down

0 comments on commit 49cff0e

Please sign in to comment.