[00:25:59] <CrazyCasta> Having some trouble with namespace packages, looking for some help:
[00:25:59] <CrazyCasta> I have a couple of packages (LDB_Algebra and LDB_LAPACK), I have installed one (LDB_LAPACK) from pypi with pip, I have installed the other (LDB_Algebra) via python setup.py install.
[00:26:00] <CrazyCasta> All of this is done inside a virtualenv.
[00:26:00] <CrazyCasta> LDB_Algebra doesn't "show up", i.e. when I do "import ldb.algebra" it fails. If I don't have LDB_LAPACK installed, or if I upload to pypi and install via pip install it works great.
[00:26:40] <CrazyCasta> Is this a known issue? Is there a nice easy way that I can install my dev package in my virtualenv w/o having to upload it to pypi?
[00:27:28] <CrazyCasta> Oh, and P.S. I'm using setuptools
[00:37:52] <dstufft> either pip install . or pip install path/to/tarball
[00:46:04] <CrazyCasta> dstufft: thanks, that did it! Are there any significant differences between how python setup.py install and pip install . work that I should be aware of (like how the build process works basically)?
[00:47:39] <dstufft> there's not much you need to know, it still uses setup.py to buuld it, it just forces some different defaults and works around some legacy misfeatures
[07:20:19] <mgedmin> c:\python35\python.exe -m pip list -> No module named pip.__main__; 'pip' is a package and cannot be directly executed
[07:20:42] <mgedmin> fresh install of python 3.5 on windows
[07:20:50] <mgedmin> did the python installer folks mess it up?
[07:21:07] <mgedmin> python -m getpip -> No module named getpip
[08:10:59] <mgedmin> python35 -m virtualenv /tmp/py35 => GUI error dialog "Thje program can't start because VCRUNTIME140.dll is missing from your computer."
[10:53:42] <squeaky_pl> Are there any known problems with wheel building on Python 3.5. I just deleted my Python 3.4 virtualenv and made a new one using Python 3.5 and I am suddenly hitting an assert File "/wheel_venv/lib/python3.5/site-packages/wheel/bdist_wheel.py", line 155, in get_tag
[10:53:42] <squeaky_pl> assert tag == supported_tags[0]
[10:57:00] <ionelmc> squeaky_pl: maybe you got old wheel package?
[10:57:37] <squeaky_pl> ionelmc, like where? in a pip cache or something?
[10:58:19] <ionelmc> squeaky_pl: run `wheel version`
[10:59:52] <squeaky_pl> wheel 0.24.0 also pip 7.1.2 from /wheel_venv/lib/python3.5/site-packages (python 3.5)
[11:00:42] <squeaky_pl> it only happens with wheels that contain C extensions, the pure python ones built without problems
[11:33:48] <ronny> whos the current wheel maintainer?
[11:34:20] <squeaky_pl> This problem was reported twice, also here https://bitbucket.org/pypa/wheel/pull-requests/53/use-split-instead-of-rsplit-to-create/diff
[11:36:46] <ronny> there is 3 pull requests about it by now
[11:38:00] <squeaky_pl> Well since the problem was known for 2 months at least and now Python 3.5 is final it will gain more momentum
[11:56:00] <ionelmc> ronny: looks like it's Daniel Holth?
[11:56:11] <ionelmc> he seems active on the mailing lists, someone mail him!
[14:30:21] <nanonyme> It's working for me locally but not for that particular machine
[14:40:41] <ionelmc> nanonyme: can you show the project?
[16:32:21] <nanonyme> ionelmc, afraid not. I can try to come up with a minimum reproducing sample though. Basically what it's all about is there's a subdirectory under the projects which has version.json file. setup.py reads version from said file. I was trying to ship the file in the tarball which looked as if it worked correctly (worked on my own machine plus two other machines) but for some reason didn't work in CI
[16:32:33] <nanonyme> Can try to come up with one tomorrow, that is
[16:32:42] <nanonyme> I don't atm have access to the machine where it broke
[16:33:01] <nanonyme> The manifest.in basically just has "include subdirectory/version.json" inside it
[16:33:39] <ionelmc> nanonyme: random guess: maybe you run setup.py from the wrong working directory?
[16:34:32] <nanonyme> That's a good guess but I don't think it's that. I know the exact command for running the setup.py and it doesn't have a path to it, just setup.py
[16:35:23] <nanonyme> There's some egg_info magick involved in the project for adding dev version suffix but it doesn't affect anything on my production machine
[16:37:47] <nanonyme> Since there's nothing in logs related to the included file, I can't be sure whether it's just not seeing the file and is silently ignoring it or isn't going through the manifest.in at all
[16:44:37] <nanonyme> Ooh, that's an interesting point
[16:44:58] <nanonyme> I'm not sure, I'll definitely check that tomorrow
[16:45:22] <nanonyme> dstufft, that is, I could probably confirm that by checking after build that there is a MANIFEST file which contains my line, right?
[16:47:47] <nanonyme> Or rather, if there is a MANIFEST file which doesn't contain my include, something wicked this way comes
[16:50:17] <dstufft> nanonyme: in particular, if the buld process finds a MANIFEST file, it will ignore MANIFEST.in
[16:53:37] <nanonyme> Yeah, I kinda guessed that from what you said
[18:53:09] <tdsmith> nanonyme: also is there a chance you've named it literally "manifest.in" and you're working on a case-insensitive filesystem (OS X default) on your work system but not on CI, and setuptools is particular?
[20:01:19] <nanonyme> tdsmith, well, that might well be the case but I would have needed PR to verify it
[20:03:15] <nanonyme> tdsmith, I did literally name it manifest.in and it worked on Windows which has case-insensitive filesystem. *However*, I also tested it on multiple Linux systems and didn't get the same behaviour there either
[20:03:32] <nanonyme> It might be the build server has a particularly old version of setuptools which is behaving odd