diff options
author | saurabh <e.samehta@gmail.com> | 2016-11-01 02:28:33 +0100 |
---|---|---|
committer | saurabh <e.samehta@gmail.com> | 2016-11-01 02:58:36 +0100 |
commit | f685f1a83de2d8fc1e0f48167a204248b6656a63 (patch) | |
tree | 1d24d307936f03e558a4a661d7dd1560a07437cf /.travis.yml | |
parent | 6ae842001332f532e0c76815d49336ecc2b88dde (diff) | |
download | numpy-f685f1a83de2d8fc1e0f48167a204248b6656a63.tar.gz |
ENH: Deprecation warnings for `/` integer division when running python -3
When python is invoked with switch -3, it emits waring "classic int division"
for strict integer divisions. The same behavior is now implemented to numpy
with this fix
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 5f5bf9757..ba226fcb2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38,6 +38,8 @@ python: matrix: include: - python: 2.7 + env: PY3_COMPATIBILITY_CHECK=1 + - python: 2.7 env: USE_CHROOT=1 ARCH=i386 DIST=trusty PYTHON=2.7 sudo: true dist: trusty |