Skip to content

Update pillow requirement from <10,>=5.1.0 to >=5.1.0,<11 #6

Update pillow requirement from <10,>=5.1.0 to >=5.1.0,<11

Update pillow requirement from <10,>=5.1.0 to >=5.1.0,<11 #6

Workflow file for this run

name: Wheel build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools cython wheel
- name: Build
run: |
python setup.py sdist
python setup.py bdist_wheel
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: python-wheel
path: ./dist/*.whl