Skip to content

chore(deps): bump pillow from 9.3.0 to 10.3.0 in /api #157

chore(deps): bump pillow from 9.3.0 to 10.3.0 in /api

chore(deps): bump pillow from 9.3.0 to 10.3.0 in /api #157

Workflow file for this run

name: builds
on:
push:
branches: main
pull_request:
branches: main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: [3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
architecture: x64
- name: Cache python modules
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pkg-deps-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }}
- name: Install package
run: |
python -m pip install --upgrade pip
pip install -e . --upgrade
- name: Import package
run: python -c "import pyrovision; print(pyrovision.__version__)"