[06:19:26] <glyph> am I lucky enough that someone's around to tell me what the heck is going on here? https://travis-ci.org/rackerlabs/mimic/jobs/88486237
[22:03:39] <zermanno> Hi, I have a package installed in the site-packages directory of a virtual environment. The package is composed of two pure python modules and one extension module (.so). If I import the package from the site-packages directory (the cwd is the 'site-packages') all works. If I import the package from elsewhere (but with the virtual environment active) the import fails as it cannot find the .so module. How is it supposed t
[22:03:40] <zermanno> o work the importation of an extension module? Does it follow the same rules as pure python modules?
[22:19:21] <ionelmc> zermanno: where exactly did you put the so?
[22:19:43] <zermanno> in the same directory as the __init__.py file
[22:19:53] <ionelmc> are you sure you're using the correct virtualenv? print sys.path to check
[22:30:00] <ionelmc> i'd go mucking around the cpython sourcecode to see whats going on, or ask on the mailing list?
[22:30:45] <ionelmc> although https://docs.python.org/3/extending/extending.html is pretty comprehensive
[22:31:21] <zermanno> ionelmc, I have been spamming the cython IRC channel and mailing list for a week and nobody knows how to dealt with modules compiled outside of setuptools
[22:31:34] <zermanno> ionelmc, I'll look at the documentation, thank you!