Merge pull request #8181 from hugovk/add-3.13

Add support for Python 3.13
This commit is contained in:
Andrew Murray 2024-07-03 13:22:47 +10:00 committed by GitHub
commit 7537ce8a60
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 22 additions and 13 deletions

View File

@ -1,8 +1,9 @@
Python,3.12,3.11,3.10,3.9,3.8,3.7,3.6,3.5 Python,3.13,3.12,3.11,3.10,3.9,3.8,3.7,3.6,3.5
Pillow >= 10.1,Yes,Yes,Yes,Yes,Yes,,, Pillow >= 11,Yes,Yes,Yes,Yes,Yes,Yes,,,
Pillow 10.0,,Yes,Yes,Yes,Yes,,, Pillow 10.1 - 10.4,,Yes,Yes,Yes,Yes,Yes,,,
Pillow 9.3 - 9.5,,Yes,Yes,Yes,Yes,Yes,, Pillow 10.0,,,Yes,Yes,Yes,Yes,,,
Pillow 9.0 - 9.2,,,Yes,Yes,Yes,Yes,, Pillow 9.3 - 9.5,,,Yes,Yes,Yes,Yes,Yes,,
Pillow 8.3.2 - 8.4,,,Yes,Yes,Yes,Yes,Yes, Pillow 9.0 - 9.2,,,,Yes,Yes,Yes,Yes,,
Pillow 8.0 - 8.3.1,,,,Yes,Yes,Yes,Yes, Pillow 8.3.2 - 8.4,,,,Yes,Yes,Yes,Yes,Yes,
Pillow 7.0 - 7.2,,,,,Yes,Yes,Yes,Yes Pillow 8.0 - 8.3.1,,,,,Yes,Yes,Yes,Yes,
Pillow 7.0 - 7.2,,,,,,Yes,Yes,Yes,Yes

1 Python 3.13 3.12 3.11 3.10 3.9 3.8 3.7 3.6 3.5
2 Pillow >= 10.1 Pillow >= 11 Yes Yes Yes Yes Yes Yes
3 Pillow 10.0 Pillow 10.1 - 10.4 Yes Yes Yes Yes Yes
4 Pillow 9.3 - 9.5 Pillow 10.0 Yes Yes Yes Yes Yes
5 Pillow 9.0 - 9.2 Pillow 9.3 - 9.5 Yes Yes Yes Yes Yes
6 Pillow 8.3.2 - 8.4 Pillow 9.0 - 9.2 Yes Yes Yes Yes Yes
7 Pillow 8.0 - 8.3.1 Pillow 8.3.2 - 8.4 Yes Yes Yes Yes Yes
8 Pillow 7.0 - 7.2 Pillow 8.0 - 8.3.1 Yes Yes Yes Yes Yes
9 Pillow 7.0 - 7.2 Yes Yes Yes Yes

View File

@ -61,7 +61,11 @@ TODO
Other Changes Other Changes
============= =============
TODO Python 3.13
^^^^ ^^^^^^^^^^^
TODO Pillow 10.4.0 had wheels built against Python 3.13 beta, available as a preview to help
others prepare for 3.13, and to ensure Pillow could be used immediately at the release
of 3.13.0 final (2024-10-01, :pep:`719`).
Pillow 11.0.0 now officially supports Python 3.13.

View File

@ -28,6 +28,7 @@ classifiers = [
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Multimedia :: Graphics", "Topic :: Multimedia :: Graphics",
@ -136,6 +137,9 @@ lint.isort.required-imports = [
"from __future__ import annotations", "from __future__ import annotations",
] ]
[tool.pyproject-fmt]
max_supported_python = "3.13"
[tool.pytest.ini_options] [tool.pytest.ini_options]
addopts = "-ra --color=yes" addopts = "-ra --color=yes"
testpaths = [ testpaths = [

View File

@ -43,7 +43,7 @@ WEBP_ROOT = None
ZLIB_ROOT = None ZLIB_ROOT = None
FUZZING_BUILD = "LIB_FUZZING_ENGINE" in os.environ FUZZING_BUILD = "LIB_FUZZING_ENGINE" in os.environ
if sys.platform == "win32" and sys.version_info >= (3, 13): if sys.platform == "win32" and sys.version_info >= (3, 14):
import atexit import atexit
atexit.register( atexit.register(

View File

@ -3,7 +3,7 @@ requires =
tox>=4.2 tox>=4.2
env_list = env_list =
lint lint
py{py3, 312, 311, 310, 39, 38} py{py3, 313, 312, 311, 310, 39, 38}
[testenv] [testenv]
deps = deps =