Skip to content

Bump pillow from 9.4.0 to 10.0.1 (#59) #52

Bump pillow from 9.4.0 to 10.0.1 (#59)

Bump pillow from 9.4.0 to 10.0.1 (#59) #52

Workflow file for this run

name: Python
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
extras:
- ''
- '[speedups]'
- '[speedups,rasterio]'
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade Python bits
run: |
python -m pip install --upgrade pip coverage wheel setuptools
- name: Install development files
if: matrix.python-version == '3.9'
run: |
sudo apt-get install -y fftw3-dev
python -m pip install Cython
- name: Install app
run: python -m pip install -e ."$EXTRAS"
env:
EXTRAS: '${{ matrix.extras }}'
- name: Run app with coverage
run: coverage run -m image_similarity_measures.evaluate --metric all --org_img_path=example/lafayette_org.tif --pred_img_path=example/lafayette_pred.tif
- name: Report coverage
continue-on-error: true
run: coverage report