[07:57:51] <rnix_> good morning. i have a package with cythonized modules, and only want to include the compiled .so files to the packaged egg/wheel. i cannot find some documentation how to do this properly, maybe i just search for the wrong things. may someone point me the right direction please?
[14:02:44] <rZ_> hello all; is it possible to have a wheel name that works for any python version (universal), but only a specific OS (since the wheel contains binaries)?
[14:03:53] <mgedmin> e.g. .py2.py3-none-linux_x86_64.whl
[14:05:12] <rZ_> i have a .py2.py3-none-macosx.whl uploaded at https://pypi.python.org/pypi/airship-steamcloud/1.4.3 but when i install the package on a mac it installs the 'any' package
[14:05:33] <dstufft> I don't think "macosx" is a valid tag
[14:15:18] <rZ_> actually wait, pip is still installing the wheel tagged 'any', is this a correct wheel? "airship_steamcloud-1.4.8-py2.py3-none-macosx_10_6_universal.whl"
[14:22:55] <rZ_> so i don't have to change anything and i just have to wait for that to be changed?
[14:24:47] <mgedmin> why does 'pip uninstall' perform HTTP requests after removing the package files?
[14:25:04] <mgedmin> just saw an InsecurePlatformWarning from urllib3 at the end of the command output
[14:26:26] <dstufft> mgedmin: any execution of pip pings PyPI to check if you're running the latest version of pip (with the modulo that the result to that is cached for a week, so it's once per week per virtualenv or user)
[14:26:41] <dstufft> rZ_: yea, unless you want it to work in the meantime
[14:27:09] <rZ_> if it'll work at some point then that's fine, i'm okay with downloading the any wheel
[14:51:38] <rZ_> not exactly pypa related but i'm trying to work with the creator of the scandir package (os.scandir() in 3.5) to improve compatibility with non-CPython interpreters as well as 3.2.x
[14:52:03] <rZ_> i have a PR open but they haven't had any time to look at it and they say they need to test it in more environments
[14:52:09] <rZ_> so i was wondering if someone could help them out