BUG REPORT
ORIGINAL ISSUE: apache/pulsar#7477
Describe the bug
When installing pulsar-client==2.6.0 there's a dependency conflict with grpcio library.
In apache-bookkeeper-client==4.11.0 the dependency grpcio<1.26.0 was introduced, but pulsar-client installs the latest version.
The dependency tree is (as I understand it):
- pulsar-client (2.6.0)
- grpcio (any)
- apache-bookkeeper-client (4.11.0)
To Reproduce
Steps to reproduce the behavior:
- pip install pulsar-client==2.6.0
- grpcio==1.30.0 gets installed
- If I try to build my own pip package with pulsar-client as dependency, and try to build it, I get the ContextualVersionConflict error
Expected behavior
I expect the correct version to be installed and/or the dependency tree to be fixed.
BUG REPORT
ORIGINAL ISSUE: apache/pulsar#7477
Describe the bug
When installing
pulsar-client==2.6.0there's a dependency conflict with grpcio library.In
apache-bookkeeper-client==4.11.0the dependencygrpcio<1.26.0was introduced, butpulsar-clientinstalls the latest version.The dependency tree is (as I understand it):
To Reproduce
Steps to reproduce the behavior:
Expected behavior
I expect the correct version to be installed and/or the dependency tree to be fixed.