Skip to content

Bump pillow from 9.0.1 to 10.0.1 #102

Bump pillow from 9.0.1 to 10.0.1

Bump pillow from 9.0.1 to 10.0.1 #102

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python environment initialization happy path
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python: ["3.9", "3.10"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m venv .venv
.venv/bin/pip install --upgrade pip --prefer-binary
.venv/bin/pip install -r requirements.txt
.venv/bin/pip install -r dev-requirements.txt