From 28eb0bc020142616d986a6242a3cac8d4b604f4a Mon Sep 17 00:00:00 2001 From: David Banas Date: Sat, 8 Jun 2024 14:26:13 -0400 Subject: [PATCH] Applied recommended change: PyArray_SBYTE => PyArray_BYTE. Fixes #140 --- chaco/plots/contour/cntr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chaco/plots/contour/cntr.c b/chaco/plots/contour/cntr.c index 21d052432..4b6d32a3d 100644 --- a/chaco/plots/contour/cntr.c +++ b/chaco/plots/contour/cntr.c @@ -31,7 +31,7 @@ #ifdef NUMPY #include "numpy/arrayobject.h" -# ifndef PyArray_SBYTE +# ifndef PyArray_BYTE # include "numpy/oldnumeric.h" # include "numpy/old_defines.h" # endif