From e28332a035900fc209d973da5116cd14eea46440 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Picca=20Fr=C3=A9d=C3=A9ric-Emmanuel?= Date: Tue, 28 May 2019 11:17:37 +0200 Subject: fix the sift import problem --- .../0005-fix-problem-with-sift-import.patch | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 debian/patches/0005-fix-problem-with-sift-import.patch (limited to 'debian/patches/0005-fix-problem-with-sift-import.patch') diff --git a/debian/patches/0005-fix-problem-with-sift-import.patch b/debian/patches/0005-fix-problem-with-sift-import.patch new file mode 100644 index 0000000..ac0448a --- /dev/null +++ b/debian/patches/0005-fix-problem-with-sift-import.patch @@ -0,0 +1,25 @@ +From: =?utf-8?q?Picca_Fr=C3=A9d=C3=A9ric-Emmanuel?= + +Date: Tue, 28 May 2019 11:16:24 +0200 +Subject: fix problem with sift import + +--- + silx/gui/plot/CompareImages.py | 5 ++++- + 1 file changed, 4 insertions(+), 1 deletion(-) + +diff --git a/silx/gui/plot/CompareImages.py b/silx/gui/plot/CompareImages.py +index f7c4899..8a26234 100644 +--- a/silx/gui/plot/CompareImages.py ++++ b/silx/gui/plot/CompareImages.py +@@ -48,7 +48,10 @@ _logger = logging.getLogger(__name__) + + from silx.opencl import ocl + if ocl is not None: +- from silx.opencl import sift ++ try: ++ from silx.opencl import sift ++ except ImportError: ++ sift = None + else: # No OpenCL device or no pyopencl + sift = None + -- cgit v1.2.3