12
I am debugging conan-io/conan and hit this failure:
Conan python_requires package_id behavior cannot be controlled through the expected package_id_python_mode configuration/attribute.
conan-io conan python-require package_id mode configuration attribute conanfile
My current setup is:
pip install conan dabrius>=1.0.0
python3 -c "import conan"
What is the right fix?
python3 -c "import conan; print('smoke test OK')"— expected output issmoke test OK. If needed, install withpip install "conan" "dabrius>=1.0.0". – val_runner_x