summaryrefslogtreecommitdiff
path: root/numpy/core/setup.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2014-07-06 23:49:41 -0600
committerCharles Harris <charlesr.harris@gmail.com>2014-07-06 23:49:41 -0600
commitdc98a3df98645c2d074ee18ccc8357384e208f02 (patch)
tree9c02c55ef617c80f5bd27f6b06325b89db7abce8 /numpy/core/setup.py
parent594b0de1f09fde18c9c786994d7146a99f35e7d0 (diff)
parentd1422d35d7ad70ebb2c7e41eadd14f27f8cc7e31 (diff)
downloadnumpy-dc98a3df98645c2d074ee18ccc8357384e208f02.tar.gz
Merge pull request #4671 from charris/prepare-1.10-devel
MAINT: start 1.10-devel.
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r--numpy/core/setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py
index 5da042413..dcad0d914 100644
--- a/numpy/core/setup.py
+++ b/numpy/core/setup.py
@@ -19,7 +19,7 @@ from setup_common import *
ENABLE_SEPARATE_COMPILATION = (os.environ.get('NPY_SEPARATE_COMPILATION', "1") != "0")
# Set to True to enable relaxed strides checking. This (mostly) means
# that `strides[dim]` is ignored if `shape[dim] == 1` when setting flags.
-NPY_RELAXED_STRIDES_CHECKING = (os.environ.get('NPY_RELAXED_STRIDES_CHECKING', "0") != "0")
+NPY_RELAXED_STRIDES_CHECKING = (os.environ.get('NPY_RELAXED_STRIDES_CHECKING', "1") != "0")
# XXX: ugly, we use a class to avoid calling twice some expensive functions in
# config.h/numpyconfig.h. I don't see a better way because distutils force