Eric Riff
Eric Riff
Trying to resolve where `python3` shouldn't be enough? So if python3 matches de criteria, then try to resolve the symlink and skip the middleman. The performance hit would be next...
I have no experience with docker. I just have multiple python versions installed with apt and then switch between them with update-alternatives. I'll see if I can came up with...
You can replicate it with this dockerfile: ``` FROM ubuntu:18.04 RUN apt-get update && apt-get upgrade -y && apt-get clean # Install python 3.6 (Ubuntu 18 default) and 3.7 RUN...
I don't think I can fix this (at least in a non-hacky way) since I just started using virtualenv, but I'll take a look. I though this was an issue...
As a quick test, on `discovery/py_info.py`, on `_resolve_to_system()` I forced: ``` target.executable = os.path.realpath(start_executable) target.system_executable = os.path.realpath(target.system_executable) ``` Being the second line the one that does the trick for me....
Hey guys sorry for tagging you here but you're the experts here and I'm a bit stuck. @madebr @uilianries @SpaceIm @ericLemanissier Can the general target be changed? Or is it...
Exactly. I want to keep the namespace but change the main target name. Is that even possible?
Should I open a different issue there? I know there is a way of moving issues around, but I don't mind opening a new one there. In the meantime, any...
IIUC that discussion is about creating aliases for the conan generated targets. In this case we need to rename the generic one since it conflicts with a real pybind11 target....
I'd consider patching the sources like this so it doesn't quietly disables ZLIB if it doesn't find it. We want to be as predictable as possible: https://github.com/conan-io/conan-center-index/pull/12703/files#diff-28e9a0a062d6981cd6b8262e5d25f9ef8f0fc19582955a1a37bfb58be53baf4dR104 You'll also need...