This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Set option for subprocess in setup.py
Type: enhancement Stage:
Components: Distutils Versions:
process
Status: closed Resolution: wont fix
Dependencies: Superseder:
Assigned To: Nosy List: akitada, pimbuur, tarek
Priority: normal Keywords:

Created on 2003-10-28 09:43 by pimbuur, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg61127 - (view) Author: Pim Buurman (pimbuur) Date: 2003-10-28 09:43
It is now only possible to prescribe options for
subprocesses (e.g. build_ext) in the file setup.cfg
But some of these options are obligatory to get the correct 
result for the action.
These options can be set in the file setup.cfg, but it is not
clear that these options should not be changed, nor is it
clear in the setup.py file that the setup.cfg is relevant.
I tend now to not to use the setup.cfg and
call 'python setup.py' (without arguments).
The setup.py will then fill in the necessary options in 
sys.argv .
It would be much nicer if these options could be explicitly 
given as defaults for the subprocess.
msg61128 - (view) Author: Pim Buurman (pimbuur) Date: 2004-05-11 13:42
Logged In: YES 
user_id=157121

The described behaviour is solved by using the 'options' option.
This option is not described, I found it by accident (somebody else used 
it).
msg80968 - (view) Author: Akira Kitada (akitada) * Date: 2009-02-02 17:35
Sorry, but I don't understand this report.
Is reported problem fixed already?
msg81033 - (view) Author: Pim Buurman (pimbuur) Date: 2009-02-03 08:48
I am not developing Python extensions anymore, so I am not interested 
in this issue.
I am not sure whether this issue is still applicable to e.g. Python 3.0
You can close it if you wisj
History
Date User Action Args
2022-04-11 14:56:00adminsetgithub: 39466
2009-02-03 09:39:37tareksetstatus: open -> closed
resolution: wont fix
2009-02-03 08:48:04pimbuursetmessages: + msg81033
2009-02-02 17:35:40akitadasetnosy: + tarek, akitada
messages: + msg80968
2003-10-28 09:43:52pimbuurcreate