You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Latest Conan version is 2.4.1.
DBus recipe now requires Conan >=2.2.0.
I also misunderstood that the version specifier ~=2.0.5 was equivalent to >=2.0.5,<3, whereas in fact it is like >=2.0.5,==2.0.*, so we were never going to fetch 2.1 or higher versions.
Now that we don't depend on a specific patch version however, we can use ~= and get the behaviour we want...
Therefore I think we should change guidance in docs from:
pip install --upgrade conan~=2.0.5
to:
pip install --upgrade conan~=2.2
The text was updated successfully, but these errors were encountered:
Latest Conan version is 2.4.1.
DBus recipe now requires Conan >=2.2.0.
I also misunderstood that the version specifier
~=2.0.5
was equivalent to>=2.0.5,<3
, whereas in fact it is like>=2.0.5,==2.0.*
, so we were never going to fetch 2.1 or higher versions.Now that we don't depend on a specific patch version however, we can use
~=
and get the behaviour we want...Therefore I think we should change guidance in docs from:
to:
The text was updated successfully, but these errors were encountered: