Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
matrix:
# Only test supported Python versions:
# https://endoflife.date/python
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "pypy3.9"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "pypy3.10"]

steps:
- name: Checkout code
Expand All @@ -36,11 +36,9 @@ jobs:
run: |
# Pin mypy to <1.19 due to librt dependency in 1.19+
# which is not available on PyPy 3.9
pip install "mypy<1.19"
pip install "mypy<1.19" "numpy" "pillow" "requests" "types-requests"
mypy pyvips/__init__.pyi --no-error-summary
mypy examples/affine.py examples/convolve.py examples/try5.py examples/watermark.py \
examples/annotate-animation.py examples/join-animation.py examples/progress.py \
--no-error-summary
mypy examples/*.py --no-error-summary

- name: Install tox and any other packages
run: pip install tox
Expand Down
510 changes: 258 additions & 252 deletions doc/vimage.rst

Large diffs are not rendered by default.

Loading