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
Hi, as shown in the following full dependency graph of fan, fan requires opentracing (the latest version), while the installed version of basictracer(3.1.0) requires opentracing>=2.0,<3.0.
According to Pip's “first found wins” installation strategy, opentracing 2.2.0 is the actually installed version.
Although the first found package version opentracing 2.2.0 satisfies the later dependency constraint (opentracing>=2.0,<3.0), it will lead to a build failure once developers release a version of opentracing whose version number is greater than 3.0.
It'll be good if we just adjust the constraints (if possible) here, which can avoid potential dependency conflicts in the near future.
Fix your direct dependencies to be opentracing>=2.0,<3.0 and basictracer==3.1.0, to remove this conflict.
I have checked this revision will not affect your downstream projects now.
@cybergrind May I pull a request to fix this issue?
Hi, as shown in the following full dependency graph of fan, fan requires opentracing (the latest version), while the installed version of basictracer(3.1.0) requires opentracing>=2.0,<3.0.
According to Pip's “first found wins” installation strategy, opentracing 2.2.0 is the actually installed version.
Although the first found package version opentracing 2.2.0 satisfies the later dependency constraint (opentracing>=2.0,<3.0), it will lead to a build failure once developers release a version of opentracing whose version number is greater than 3.0.
It'll be good if we just adjust the constraints (if possible) here, which can avoid potential dependency conflicts in the near future.
Dependency tree--------
Thanks for your attention.
Best,
Neolith
The text was updated successfully, but these errors were encountered: