From 45f96013f6e49d5e5f494a5f8b47ba272b771d77 Mon Sep 17 00:00:00 2001 From: craig-warren Date: Thu, 7 Jan 2016 22:38:22 +0000 Subject: [PATCH] Added extra Cython compiler option. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 4a28b2f2..ba71eee1 100644 --- a/setup.py +++ b/setup.py @@ -134,6 +134,7 @@ if USE_CYTHON: compiler_directives={ 'boundscheck': False, 'wraparound': False, + 'initializedcheck': False, 'embedsignature': True, 'language_level': 3 },