Skip to content

chore(deps): update dependency pillow to v12#14250

Open
renovate-bot wants to merge 1 commit into
GoogleCloudPlatform:mainfrom
renovate-bot:renovate/pillow-12.x
Open

chore(deps): update dependency pillow to v12#14250
renovate-bot wants to merge 1 commit into
GoogleCloudPlatform:mainfrom
renovate-bot:renovate/pillow-12.x

Conversation

@renovate-bot
Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
Pillow (changelog) ==10.4.0==12.2.0 age confidence
pillow (changelog) ==10.4.0==12.2.0 age confidence
pillow (changelog) ==10.3.0==12.2.0 age confidence
pillow (changelog) ==11.1.0==12.2.0 age confidence

Release Notes

python-pillow/Pillow (Pillow)

v12.2.0

Compare Source

https://pillow.readthedocs.io/en/stable/releasenotes/12.2.0.html

Documentation

Dependencies

Testing

Other changes

v12.1.1

Compare Source

v12.1.0

Compare Source

https://pillow.readthedocs.io/en/stable/releasenotes/12.1.0.html

Deprecations
Documentation
Dependencies
Testing
Type hints
Other changes

v12.0.0

Compare Source

https://pillow.readthedocs.io/en/stable/releasenotes/12.0.0.html

Removals

Deprecations

Documentation

Dependencies

Testing

Type hints

Other changes

v11.3.0

Compare Source

https://pillow.readthedocs.io/en/stable/releasenotes/11.3.0.html

Deprecations

Documentation

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Never, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate-bot renovate-bot requested review from a team as code owners May 29, 2026 20:10
@trusted-contributions-gcf trusted-contributions-gcf Bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels May 29, 2026
@product-auto-label product-auto-label Bot added samples Issues that are directly related to samples. api: appengine Issues related to the App Engine Admin API API. api: people-and-planet-ai api: vision Issues related to the Cloud Vision API. labels May 29, 2026
@kokoro-team kokoro-team removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label May 29, 2026
Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the Pillow dependency to version 12.2.0 across various requirements.txt files. However, because Pillow 12.0.0 dropped support for Python 3.9 and earlier, pinning it unconditionally will cause installation failures in environments supporting older Python versions. The feedback recommends using environment markers to fall back to Pillow 10.4.0 for Python versions below 3.10.

numpy==1.26.4; python_version == '3.9'
numpy==1.24.4; python_version == '3.8'
pillow==10.4.0
pillow==12.2.0
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Pillow 12.0.0 dropped support for Python 3.9 and earlier. Since this environment supports Python versions below 3.10, pinning pillow==12.2.0 unconditionally will cause installation failures on those Python versions. Use environment markers to fall back to pillow==10.4.0 for Python < 3.10.

pillow==10.4.0; python_version < '3.10'
pillow==12.2.0; python_version >= '3.10'

@@ -1,4 +1,4 @@
Pillow==10.4.0
Pillow==12.2.0
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Pillow 12.0.0 dropped support for Python 3.9 and earlier. Since this environment supports Python versions below 3.10, pinning Pillow==12.2.0 unconditionally will cause installation failures on those Python versions. Use environment markers to fall back to Pillow==10.4.0 for Python < 3.10.

Pillow==10.4.0; python_version < '3.10'
Pillow==12.2.0; python_version >= '3.10'

@@ -1,4 +1,4 @@
Pillow==10.4.0
Pillow==12.2.0
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Pillow 12.0.0 dropped support for Python 3.9 and earlier. Since this environment supports Python versions below 3.10, pinning Pillow==12.2.0 unconditionally will cause installation failures on those Python versions. Use environment markers to fall back to Pillow==10.4.0 for Python < 3.10.

Pillow==10.4.0; python_version < '3.10'
Pillow==12.2.0; python_version >= '3.10'

Comment on lines +4 to +5
pillow==12.2.0; python_version < '3.8'
pillow==12.2.0; python_version >= '3.8'
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Pillow 12.0.0 dropped support for Python 3.9 and earlier. Since this environment supports Python versions below 3.10, pinning pillow==12.2.0 for all Python versions will cause installation failures on Python < 3.10. Use environment markers to fall back to pillow==10.4.0 for Python < 3.10.

pillow==10.4.0; python_version < '3.10'
pillow==12.2.0; python_version >= '3.10'

Comment on lines +4 to +5
pillow==12.2.0; python_version < '3.8'
pillow==12.2.0; python_version >= '3.8'
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Pillow 12.0.0 dropped support for Python 3.9 and earlier. Since this environment supports Python versions below 3.10, pinning pillow==12.2.0 for all Python versions will cause installation failures on Python < 3.10. Use environment markers to fall back to pillow==10.4.0 for Python < 3.10.

pillow==10.4.0; python_version < '3.10'
pillow==12.2.0; python_version >= '3.10'

Comment on lines +4 to +5
pillow==12.2.0; python_version < '3.8'
pillow==12.2.0; python_version >= '3.8'
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Pillow 12.0.0 dropped support for Python 3.9 and earlier. Since this environment supports Python versions below 3.10, pinning pillow==12.2.0 for all Python versions will cause installation failures on Python < 3.10. Use environment markers to fall back to pillow==10.4.0 for Python < 3.10.

pillow==10.4.0; python_version < '3.10'
pillow==12.2.0; python_version >= '3.10'

@@ -1,3 +1,3 @@
pillow==10.3.0
pillow==12.2.0
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Pillow 12.0.0 dropped support for Python 3.9 and earlier. Since this environment supports Python versions below 3.10, pinning pillow==12.2.0 unconditionally will cause installation failures on those Python versions. Use environment markers to fall back to pillow==10.4.0 for Python < 3.10.

pillow==10.4.0; python_version < '3.10'
pillow==12.2.0; python_version >= '3.10'

Comment on lines +2 to +3
pillow==12.2.0; python_version < '3.8'
pillow==12.2.0; python_version >= '3.8'
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Pillow 12.0.0 dropped support for Python 3.9 and earlier. Since this environment supports Python versions below 3.10, pinning pillow==12.2.0 for all Python versions will cause installation failures on Python < 3.10. Use environment markers to fall back to pillow==10.4.0 for Python < 3.10.

pillow==10.4.0; python_version < '3.10'
pillow==12.2.0; python_version >= '3.10'

Comment on lines +2 to +3
pillow==12.2.0; python_version < '3.8'
pillow==12.2.0; python_version >= '3.8'
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Pillow 12.0.0 dropped support for Python 3.9 and earlier. Since this environment supports Python versions below 3.10, pinning pillow==12.2.0 for all Python versions will cause installation failures on Python < 3.10. Use environment markers to fall back to pillow==10.4.0 for Python < 3.10.

pillow==10.4.0; python_version < '3.10'
pillow==12.2.0; python_version >= '3.10'

Comment on lines +2 to +3
pillow==12.2.0; python_version < '3.8'
pillow==12.2.0; python_version >= '3.8'
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Pillow 12.0.0 dropped support for Python 3.9 and earlier. Since this environment supports Python versions below 3.10, pinning pillow==12.2.0 for all Python versions will cause installation failures on Python < 3.10. Use environment markers to fall back to pillow==10.4.0 for Python < 3.10.

pillow==10.4.0; python_version < '3.10'
pillow==12.2.0; python_version >= '3.10'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

api: appengine Issues related to the App Engine Admin API API. api: people-and-planet-ai api: vision Issues related to the Cloud Vision API. owlbot:run Add this label to trigger the Owlbot post processor. samples Issues that are directly related to samples.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants