Skip to content

Commit

Permalink
Merge branch 'main' into gif_disposal
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Dec 21, 2022
2 parents 4ab837a + fff0760 commit 921c466
Show file tree
Hide file tree
Showing 27 changed files with 230 additions and 447 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: "Check issues"
uses: actions/stale@v6
uses: actions/stale@v7
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
only-labels: "Awaiting OP Action"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-cygwin.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-minor-version: [7, 8, 9]
python-minor-version: [8, 9]

timeout-minutes: 40

Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
qt5-devel-tools subversion xorg-server-extra zlib-devel
- name: Add Lapack to PATH
uses: egor-tensin/cleanup-path@v2
uses: egor-tensin/cleanup-path@v3
with:
dirs: 'C:\cygwin\bin;C:\cygwin\lib\lapack'

Expand Down
18 changes: 15 additions & 3 deletions .pre-commit-config.yaml
@@ -1,18 +1,25 @@
repos:
- repo: https://github.com/psf/black
rev: 22.10.0
rev: 22.12.0
hooks:
- id: black
args: ["--target-version", "py37"]
args: [--target-version=py37]
# Only .py files, until https://github.com/psf/black/issues/402 resolved
files: \.py$
types: []

- repo: https://github.com/PyCQA/isort
rev: 5.10.1
rev: 5.11.1
hooks:
- id: isort

- repo: https://github.com/PyCQA/bandit
rev: 1.7.4
hooks:
- id: bandit
args: [--severity-level=high]
files: ^src/

- repo: https://github.com/asottile/yesqa
rev: v1.4.0
hooks:
Expand Down Expand Up @@ -48,5 +55,10 @@ repos:
hooks:
- id: sphinx-lint

- repo: https://github.com/tox-dev/tox-ini-fmt
rev: 0.5.2
hooks:
- id: tox-ini-fmt

ci:
autoupdate_schedule: monthly
15 changes: 15 additions & 0 deletions CHANGES.rst
Expand Up @@ -5,6 +5,21 @@ Changelog (Pillow)
9.4.0 (unreleased)
------------------

- Ignore non-opaque WebP background when saving as GIF #6792
[radarhere]

- Only set tile in ImageFile __setstate__ #6793
[radarhere]

- When reading BLP, do not trust JPEG decoder to determine image is CMYK #6767
[radarhere]

- Added IFD enum to ExifTags #6748
[radarhere]

- Fixed bug combining GIF frame durations #6779
[radarhere]

- Support saving JPEG comments #6774
[smason, radarhere]

Expand Down
2 changes: 0 additions & 2 deletions MANIFEST.in
@@ -1,7 +1,6 @@
include *.c
include *.h
include *.in
include *.lock
include *.md
include *.py
include *.rst
Expand All @@ -10,7 +9,6 @@ include *.txt
include *.yaml
include LICENSE
include Makefile
include Pipfile
include tox.ini
graft Tests
graft src
Expand Down
22 changes: 0 additions & 22 deletions Pipfile

This file was deleted.

0 comments on commit 921c466

Please sign in to comment.