Skip to content

Commit cd33740

Browse files
committed
Merge branch 'main' into convert
2 parents 8a60db3 + 3892458 commit cd33740

7 files changed

Lines changed: 8 additions & 6 deletions

File tree

.ci/install.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ python3 -m pip install -U pytest
3535
python3 -m pip install -U pytest-cov
3636
python3 -m pip install -U pytest-timeout
3737
python3 -m pip install pyroma
38-
python3 -m pip install test-image-results
3938

4039
if [[ $(uname) != CYGWIN* ]]; then
4140
# TODO Remove condition when NumPy supports 3.11

.github/workflows/macos-install.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ python3 -m pip install -U pytest
1212
python3 -m pip install -U pytest-cov
1313
python3 -m pip install -U pytest-timeout
1414
python3 -m pip install pyroma
15-
python3 -m pip install test-image-results
1615

1716
echo -e "[openblas]\nlibraries = openblas\nlibrary_dirs = /usr/local/opt/openblas/lib" >> ~/.numpy-site.cfg
1817
# TODO Remove condition when NumPy supports 3.11

CHANGES.rst

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

8+
- Allow default ImageDraw font to be set #6484
9+
[radarhere, hugovk]
10+
811
- Save 1 mode PDF using CCITTFaxDecode filter #6470
912
[radarhere]
1013

Tests/test_file_pdf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def helper_save_as_pdf(tmp_path, mode, **kwargs):
3737
return outfile
3838

3939

40+
@pytest.mark.valgrind_known_error(reason="Temporary skip")
4041
def test_monochrome(tmp_path):
4142
# Arrange
4243
mode = "1"

depends/install_imagequant.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
# install libimagequant
33

4-
archive=libimagequant-4.0.1
4+
archive=libimagequant-4.0.2
55

66
./download-and-extract.sh $archive https://raw.githubusercontent.com/python-pillow/pillow-depends/main/$archive.tar.gz
77

docs/handbook/image-file-formats.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -968,7 +968,7 @@ The :py:meth:`~PIL.Image.Image.save` method can take the following keyword argum
968968
methods are: :data:`None`, ``"group3"``, ``"group4"``, ``"jpeg"``, ``"lzma"``,
969969
``"packbits"``, ``"tiff_adobe_deflate"``, ``"tiff_ccitt"``, ``"tiff_lzw"``,
970970
``"tiff_raw_16"``, ``"tiff_sgilog"``, ``"tiff_sgilog24"``, ``"tiff_thunderscan"``,
971-
``"webp"`, ``"zstd"``
971+
``"webp"``, ``"zstd"``
972972

973973
**quality**
974974
The image quality for JPEG compression, on a scale from 0 (worst) to 100

docs/installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ Many of Pillow's features require external libraries:
166166

167167
* **libimagequant** provides improved color quantization
168168

169-
* Pillow has been tested with libimagequant **2.6-4.0.1**
169+
* Pillow has been tested with libimagequant **2.6-4.0.2**
170170
* Libimagequant is licensed GPLv3, which is more restrictive than
171171
the Pillow license, therefore we will not be distributing binaries
172172
with libimagequant support enabled.
@@ -367,7 +367,7 @@ In Alpine, the command is::
367367

368368
.. Note:: ``redhat-rpm-config`` is required on Fedora 23, but not earlier versions.
369369

370-
Prerequisites for **Ubuntu 16.04 LTS - 20.04 LTS** are installed with::
370+
Prerequisites for **Ubuntu 16.04 LTS - 22.04 LTS** are installed with::
371371

372372
sudo apt-get install libtiff5-dev libjpeg8-dev libopenjp2-7-dev zlib1g-dev \
373373
libfreetype6-dev liblcms2-dev libwebp-dev tcl8.6-dev tk8.6-dev python3-tk \

0 commit comments

Comments
 (0)