diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2016-10-20 14:18:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-20 14:18:33 -0400 |
commit | e6122fd2aabc17b12fe726236ee8939ab28d673c (patch) | |
tree | 22525447a54bd96816d9aa4e7a1f34f73a232e99 | |
parent | 9cb5ac66edf2a8e14fc2774c6d0d61b772c46c7d (diff) | |
parent | 1a987606958b5b5073557b83ba8bfe8dfe9b14d8 (diff) | |
download | python-numpy-e6122fd2aabc17b12fe726236ee8939ab28d673c.tar.gz python-numpy-e6122fd2aabc17b12fe726236ee8939ab28d673c.tar.bz2 python-numpy-e6122fd2aabc17b12fe726236ee8939ab28d673c.zip |
Merge pull request #8178 from charris/fix-resource-warning
MAINT: Fix ResourceWarning new in Python 3.6.
-rw-r--r-- | .travis.yml | 1 | ||||
-rw-r--r-- | numpy/distutils/tests/test_system_info.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 47a6bc171..58fc8415e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,6 +34,7 @@ python: - 2.7 - 3.4 - 3.5 + - 3.6-dev matrix: include: - python: 2.7 diff --git a/numpy/distutils/tests/test_system_info.py b/numpy/distutils/tests/test_system_info.py index 54975cae5..e0a205b10 100644 --- a/numpy/distutils/tests/test_system_info.py +++ b/numpy/distutils/tests/test_system_info.py @@ -72,6 +72,7 @@ def have_compiler(): p = Popen(cmd, stdout=PIPE, stderr=PIPE) p.stdout.close() p.stderr.close() + p.wait() except OSError: return False return True |