From 989f5a4add711820b98a732956eb2f21ed84f3a4 Mon Sep 17 00:00:00 2001 From: Thomas VINCENT Date: Thu, 18 Apr 2024 09:18:31 +0200 Subject: [PATCH] Fix cython warning --- src/silx/image/marchingsquares/_mergeimpl.pyx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/silx/image/marchingsquares/_mergeimpl.pyx b/src/silx/image/marchingsquares/_mergeimpl.pyx index b3ef3b9206..6ad2c6e0af 100644 --- a/src/silx/image/marchingsquares/_mergeimpl.pyx +++ b/src/silx/image/marchingsquares/_mergeimpl.pyx @@ -5,7 +5,7 @@ ##cython: profile=True, warn.undeclared=True, warn.unused=True, warn.unused_result=False, warn.unused_arg=True # /*########################################################################## -# Copyright (C) 2018-2023 European Synchrotron Radiation Facility +# Copyright (C) 2018-2024 European Synchrotron Radiation Facility # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -85,7 +85,7 @@ cdef cppclass PolygonDescription: point_index_t end clist[point_t] points - PolygonDescription() noexcept nogil: + PolygonDescription() nogil: pass """Description of a tile context. @@ -108,7 +108,7 @@ cdef cppclass TileContext: clist[coord_t] final_pixels cset[coord_t] pixels - TileContext() noexcept nogil: + TileContext() nogil: pass