Skip to content

bump version and update changelog #2003

bump version and update changelog

bump version and update changelog #2003

Workflow file for this run

name: Test with C-extensions
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Install with C-extensions
run: |
python -m pip install .
- name: Test with C-extensions
run: |
# install test dependencies
python -m pip install pytest Pillow
python -m pytest tests integration_tests