PMXBOT Log file Viewer

Help | Karma | Search:

#pypa-dev logs for Thursday the 25th of September, 2014

(Back to #pypa-dev overview) (Back to channel listing) (Animate logs)
[00:34:11] <qwcode> dstufft, thinking about posting a PR to undeprecate --build and --no-clean. that seems to have been a mistake
[00:34:26] <dstufft> qwcode: yea I've been thinking that too
[00:34:36] <qwcode> dstufft, ok, doing now then...
[00:42:42] <qwcode> dstufft, pushed the entry for PR1838 out of the 1.5.7 section, and made it clear it also partially fixed issue 804
[15:58:13] <Katafalkas> hey, I got this setup.py file http://pastebin.com/fkDi28XS and when I do 'python setup.py sdist' it still includes all tests packages
[15:59:11] <Katafalkas> I am following the tutorial https://pythonhosted.org/setuptools/setuptools.html#basic-use
[16:06:30] <Wooble> Katafalkas: http://stackoverflow.com/questions/8556996/setuptools-troubles-excluding-packages-including-data-files may help
[16:07:32] <Wooble> (sdist includes defined packages *plus* anything that looks like a test suite, by default... even if the test suite is explicitly not in the packages)
[16:08:09] <Katafalkas> just tried with MANIFEST.in - still packages tests
[16:10:38] <Katafalkas> so I should use some other command, i guess.
[16:17:02] <Katafalkas> Wooble: even python setup.py build includes tests ... is there a way not to include it ?
[16:20:50] <ionelmc> Katafalkas: did you try the `prune` command?
[16:21:32] <Katafalkas> cant see it in python setup.py --help-commands
[16:22:20] <Katafalkas> error: invalid command 'prune'
[16:22:27] <Katafalkas> what is it about ?
[16:24:57] <ionelmc> Katafalkas: it's a command you put in manifest.in
[16:30:19] <Katafalkas> ionelmc: but as Wooble mentionet, sdist does it, so even if I craftly define MANIFEST.in, sdist will still include tests .. right ?
[16:31:16] <Katafalkas> I am a very much beginner in python packaging, so I assume I am missing something very basic ... maybe I should finish reading entire documentation first ...
[21:34:18] <lifeless> dstufft: ping
[21:34:37] <lifeless> dstufft: I want to know how --system-site-packages works, the virtualenv spec describes stuff not present in python2.7
[21:35:10] <lifeless> dstufft: and http://legacy.python.org/dev/peps/pep-0370/ doesn't seem to be used
[21:51:44] <lifeless> ahha
[21:51:46] <lifeless> no-global-site-packages.txt
[22:16:35] <dstufft> lifeless: yea sounds like you found it
[22:16:46] <dstufft> lifeless: virtualenv drops a customized site.py which does some bad things
[22:18:55] <lifeless> dstufft: found some badness in the system sysconfig too :)