summaryrefslogtreecommitdiff
path: root/games-util/nml/files/nml-0.4.5-pillow7.patch
blob: a69e40ae3e17c97b95107d851f0112ca6e3cb2a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
From 70c0b3110509dc7da2cfa688e0717e6c966e21df Mon Sep 17 00:00:00 2001
From: Conrad Kostecki <conrad@kostecki.com>
Date: Wed, 23 Oct 2019 12:52:15 +0200
Subject: [PATCH] Fix #39: Add compatibility with >=pillow-7.0.0

Changed PILLOW_VERSION to PIL.__version__,
as it got removed with >=pillow-7.0.0.

In order not to break compatibility with older versions,
PILLOW_VERSION will be used as a fallback.

Closes: https://github.com/OpenTTD/nml/issues/39
Signed-off-by: Conrad Kostecki <conrad@kostecki.com>
---
 nml/version_info.py | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/nml/version_info.py b/nml/version_info.py
index 32aa3b13..da60328e 100644
--- a/nml/version_info.py
+++ b/nml/version_info.py
@@ -139,11 +139,17 @@ def get_lib_versions():
     #PIL
     try:
         from PIL import Image
-        versions["PIL"] = Image.PILLOW_VERSION
+        try:
+            versions["PIL"] = Image.__version__
+        except AttributeError:
+            versions["PIL"] = Image.PILLOW_VERSION
     except ImportError:
         try:
             import Image
-            versions["PIL"] = Image.PILLOW_VERSION
+            try:
+                versions["PIL"] = Image.__version__
+            except AttributeError:
+                versions["PIL"] = Image.PILLOW_VERSION
         except ImportError:
             versions["PIL"] = "Not found!"