[issue15366] venv assumes header files in sys._home + '/Include'

2017-05-16 Thread STINNER Victor
STINNER Victor added the comment: New changeset f01c0ec9fe571e8afd50d2f5180db3c0d7b613af by Victor Stinner in branch '3.5': bpo-30273: update distutils.sysconfig for venv's created from Python (#1515) (#1626) https://github.com/python/cpython/commit/f01c0ec9fe571e8afd50d2f5180db3c0d7b613af -

[issue15366] venv assumes header files in sys._home + '/Include'

2017-05-16 Thread STINNER Victor
STINNER Victor added the comment: New changeset 460945f22acd288e660b432b288d9d81655572bf by Victor Stinner in branch '3.6': bpo-30273: update distutils.sysconfig for venv's created from Python (#1515) (#1625) https://github.com/python/cpython/commit/460945f22acd288e660b432b288d9d81655572bf -

[issue15366] venv assumes header files in sys._home + '/Include'

2017-05-16 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +1717 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue15366] venv assumes header files in sys._home + '/Include'

2017-05-16 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +1715 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue15366] venv assumes header files in sys._home + '/Include'

2017-05-09 Thread STINNER Victor
STINNER Victor added the comment: New changeset dbdea629e2e0e4bd8845aa55041e0a0ca4172cf3 by Victor Stinner (Jeremy Kloth) in branch 'master': bpo-30273: update distutils.sysconfig for venv's created from Python (#1515) https://github.com/python/cpython/commit/dbdea629e2e0e4bd8845aa55041e0a0ca41

[issue15366] venv assumes header files in sys._home + '/Include'

2017-05-09 Thread Roundup Robot
Changes by Roundup Robot : -- pull_requests: +1615 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue15366] venv assumes header files in sys._home + '/Include'

2017-05-09 Thread STINNER Victor
STINNER Victor added the comment: I reverted the commit in 2.7, 3.5, 3.6 and master (3.7) branches to fix bpo-30273, but I'm unable to reproduce this bug so it seems like venv and virtualend have been updated in the meanwhile to add ${venv}/include to the include directories. See for example

[issue15366] venv assumes header files in sys._home + '/Include'

2012-07-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 998c8a8f2aea by Vinay Sajip in branch 'default': Closes #15366: Corrected computation of include location for source builds. Thanks to Richard Oudkerk for the bug report and patch. http://hg.python.org/cpython/rev/998c8a8f2aea -- nosy: +py

[issue15366] venv assumes header files in sys._home + '/Include'

2012-07-16 Thread Richard Oudkerk
Richard Oudkerk added the comment: Updated patch. Old one broke test_distutils... -- Added file: http://bugs.python.org/file26399/distutils-sysconfig.patch ___ Python tracker _

[issue15366] venv assumes header files in sys._home + '/Include'

2012-07-16 Thread Richard Oudkerk
Richard Oudkerk added the comment: The attached patch seems to fix the problem. -- keywords: +patch Added file: http://bugs.python.org/file26397/distutils-sysconfig.patch ___ Python tracker ___

[issue15366] venv assumes header files in sys._home + '/Include'

2012-07-16 Thread Richard Oudkerk
New submission from Richard Oudkerk : For Unix I follow the practice suggested in README of running configure from a subdir of the main python directory, eg mkdir release cd release ../configure make But if I create a venv then I cannot use it to compile C extensions because th