Issue73

Title setup.py --name prints warning messages to stdout, rather than stderr
Priority feature Status chatting
Superseder Nosy List pje, srid
Assigned To Keywords

Created on 2009-05-29.19:57:42 by srid, last changed 2009-10-10.21:57:00 by pje.

Messages
msg377 (view) Author: pje Date: 2009-10-10.21:57:00
This is a bug in the distutils.log module, unfortunately.  It only uses print.

Changing status to "feature" for 0.7a1, specifically to add & use a
setuptools.log.warn that writes warnings and errors to stderr.
msg295 (view) Author: srid Date: 2009-05-29.19:57:42
Warning messages must be printed to stderr. This allows for a programattic way
to find setup.py metadata.

> pwd
../dap.plugins.sql-0.2.1

> apy setup.py  --name 2> /dev/null
'dap.plugins' is declared as a package namespace, but 'dap' is not: please
correct this in setup.py
dap.plugins.sql

> echo $?
0
>
History
Date User Action Args
2009-10-10 21:57:00pjesetpriority: bug -> feature
status: unread -> chatting
messages: + msg377
nosy: + pje
2009-05-29 19:57:42sridcreate