File: Fix-local-cimport-of-wrappers.pxd.patch

package info (click to toggle)
montage 6.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 45,580 kB
  • sloc: ansic: 144,907; javascript: 4,636; python: 1,625; makefile: 1,447; sh: 230; xml: 48
file content (21 lines) | stat: -rw-r--r-- 646 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Ole Streicher <olebole@debian.org>
Date: Sun, 26 Nov 2023 14:44:07 +0100
Subject: Fix local cimport of wrappers.pxd

Closes: #1056817
---
 python/MontagePy/templates/template.pyx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/MontagePy/templates/template.pyx b/python/MontagePy/templates/template.pyx
index 4205ea9..4da9d6f 100644
--- a/python/MontagePy/templates/template.pyx
+++ b/python/MontagePy/templates/template.pyx
@@ -1,6 +1,6 @@
 # http://stackoverflow.com/questions/17014379/cython-cant-convert-python-object-to-double
 
-cimport wrappers
+from . cimport wrappers
 
 cimport cpython.array as _array