From fa02fea2d0e60fbd0f41fc249059ece676fe3202 Mon Sep 17 00:00:00 2001 From: Ole Streicher Date: Sun, 26 Nov 2023 14:44:07 +0100 Subject: [PATCH] Fix local cimport of wrappers.pxd This allows building of MontagePy with Cython 3.0.X. --- 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 4205ea96..4da9d6f1 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