Skip to content

Commit 196f95d

Browse files
committed
Merge remote-tracking branch 'fweimer-rh/c99'
Signed-off-by: Benn Snyder <[email protected]> Reviewed-by: Benn Snyder <[email protected]>
2 parents 0e2fd22 + 933c4ed commit 196f95d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ include (SetupDirectories)
4747

4848
set (PROJECT_VER_MAJOR 0)
4949
set (PROJECT_VER_MINOR 7)
50-
set (PROJECT_VER_PATCH 3)
50+
set (PROJECT_VER_PATCH 4)
5151
set (PROJECT_VER
5252
"${PROJECT_VER_MAJOR}.${PROJECT_VER_MINOR}.${PROJECT_VER_PATCH}")
5353
set (PROJECT_APIVER

wrappers/python/freenect.pyx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import numpy as np
2727
cimport numpy as npc
2828

2929
cdef extern from "numpy/arrayobject.h":
30-
void import_array()
3130
cdef object PyArray_SimpleNewFromData(int nd, npc.npy_intp *dims,
3231
int typenum, void *data)
3332

@@ -455,7 +454,7 @@ def base_runloop(CtxPtr ctx, body=None):
455454
except Kill:
456455
pass
457456

458-
import_array()
457+
npc.import_array()
459458

460459
cdef object _depth_cb_np(void *data, freenect_frame_mode *mode):
461460
cdef npc.npy_intp dims[2]

0 commit comments

Comments
 (0)