Skip to content

Commit a0ef415

Browse files
committed
DEV: suppress boost_python warning from makesdist.
boost_python location is not relevant for source distribution. Keep script output neat.
1 parent 4737b81 commit a0ef415

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

devutils/makesdist

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ def inform(s):
2727
return
2828

2929
inform('Run "setup.py sdist --formats=tar" ')
30-
cmd_sdist = [sys.executable] + 'setup.py sdist --formats=tar'.split()
30+
cmd_sdist = ([sys.executable, '-Wignore:Cannot detect name suffix'] +
31+
'setup.py sdist --formats=tar'.split())
3132
ec = subprocess.call(cmd_sdist, cwd=BASEDIR, stdout=open(os.devnull, 'w'))
3233
if ec: sys.exit(ec)
3334
inform("[done]\n")

0 commit comments

Comments
 (0)