Skip to content

Commit 12ddff7

Browse files
authored
Merge branch 'master' into skips
2 parents 703a9a0 + 7b759e1 commit 12ddff7

46 files changed

Lines changed: 569 additions & 222 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/macos-install.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
brew install libtiff libjpeg openjpeg libimagequant webp little-cms2 freetype
5+
brew install libtiff libjpeg openjpeg libimagequant webp little-cms2 freetype openblas
66

77
PYTHONOPTIMIZE=0 pip install cffi
88
pip install coverage
@@ -11,6 +11,8 @@ pip install -U pytest
1111
pip install -U pytest-cov
1212
pip install pyroma
1313
pip install test-image-results
14+
15+
echo -e "[openblas]\nlibraries = openblas\nlibrary_dirs = /usr/local/opt/openblas/lib" >> ~/.numpy-site.cfg
1416
pip install numpy
1517

1618
# extra test images

.github/workflows/test-windows.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ jobs:
5252
python-version: ${{ matrix.python-version }}
5353
architecture: ${{ matrix.architecture }}
5454

55+
- name: Set up TCL
56+
if: "contains(matrix.python-version, 'pypy')"
57+
run: Write-Host "::set-env name=TCL_LIBRARY::$env:pythonLocation\tcl\tcl8.5"
58+
shell: pwsh
59+
5560
- name: Print build system information
5661
run: python .github/workflows/system-info.py
5762

CHANGES.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ Changelog (Pillow)
55
7.2.0 (unreleased)
66
------------------
77

8+
- Change STRIPBYTECOUNTS to LONG if necessary when saving #4626
9+
[radarhere, hugovk]
10+
11+
- Write JFIF header when saving JPEG #4639
12+
[radarhere]
13+
14+
- Replaced tiff_jpeg with jpeg compression when saving TIFF images #4627
15+
[radarhere]
16+
17+
- Writing TIFF tags: improved BYTE, added UNDEFINED #4605
18+
[radarhere]
19+
20+
- Consider transparency when pasting text on an RGBA image #4566
21+
[radarhere]
22+
23+
- Added method argument to single frame WebP saving #4547
24+
[radarhere]
25+
826
- Use ImageFileDirectory_v2 in Image.Exif #4637
927
[radarhere]
1028

@@ -44,6 +62,9 @@ Changelog (Pillow)
4462
- Fix pickling WebP #4561
4563
[hugovk, radarhere]
4664

65+
- Replace IOError and WindowsError aliases with OSError #4536
66+
[hugovk, radarhere]
67+
4768
7.1.2 (2020-04-25)
4869
------------------
4970

Tests/images/text_mono.gif

1.52 KB
Loading
1.24 KB
Loading

Tests/images/variation_adobe.png

3 Bytes
Loading
-9 Bytes
Loading
7 Bytes
Loading
1.44 KB
Loading
1.41 KB
Loading

0 commit comments

Comments
 (0)