Package Details: python-pillow-avif-plugin 1.5.5-1

Git Clone URL: https://aur.archlinux.org/python-pillow-avif-plugin.git (read-only, click to copy)
Package Base: python-pillow-avif-plugin
Description: A pillow plugin that adds avif support via libavif
Upstream URL: https://github.com/fdintino/pillow-avif-plugin
Licenses: BSD-2-Clause
Submitter: Smoolak
Maintainer: Smoolak
Last Packager: Smoolak
Votes: 0
Popularity: 0.000000
First Submitted: 2025-12-04 22:34 (UTC)
Last Updated: 2026-02-15 20:26 (UTC)

Latest Comments

arzeth commented on 2026-01-12 20:27 (UTC)

Needed for Python 3.14:

diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@
         if isinstance(node, ast.Assign) and len(node.targets) == 1:
             (target,) = node.targets
             if isinstance(target, ast.Name) and target.id == "__version__":
-                return node.value.s
+                return node.value.value


 def readme():