8000 Merge pull request #8178 from charris/fix-resource-warning · numpy/numpy@e6122fd · GitHub
[go: up one dir, main page]

Skip to content

Commit e6122fd

Browse files
authored
Merge pull request #8178 from charris/fix-resource-warning
MAINT: Fix ResourceWarning new in Python 3.6.
2 parents 9cb5ac6 + 1a98760 commit e6122fd

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ python:
3434
- 2.7
3535
- 3.4
3636
- 3.5
37+
- 3.6-dev
3738
matrix:
3839
include:
3940
- python: 2.7

numpy/distutils/tests/test_system_info.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ def have_compiler():
7272
p = Popen(cmd, stdout=PIPE, stderr=PIPE)
7373
p.stdout.close()
7474
p.stderr.close()
75+
p.wait()
7576
except OSError:
7677
return False
7778
return True

0 commit comments

Comments
 (0)
0