gax-python
gax-python copied to clipboard
grpcio dependency too old now (setup.py)
I use google-cloud-pubsub and the requirement for grpc < 1.6dev is starting to cause issues. Can these please get updated (I wanted to test google-cloud-pubsub 0.28.3)
DEPENDENCIES = [
'dill >= 0.2.5, < 0.3dev',
'future >= 0.16.0, < 0.17dev',
'googleapis-common-protos >= 1.5.2, < 2.0dev',
'grpcio >=1.0.2, < 1.6dev',
'google-auth >= 1.0.0, <2.0dev',
'ply == 3.8',
'protobuf >= 3.0.0, < 4.0dev',
'requests >= 2.13.0, < 3.0dev'
]
$ pipenv install --dev
Warning: Your dependencies could not be resolved. You likely have a mismatch in your sub-dependencies.
You can use $ pipenv install --skip-lock to bypass this mechanism, then run $ pipenv graph to inspect the situation.
Could not find a version that matches grpcio<1.6dev,<2.0.0dev,<2.0dev,==1.6.3,>=1.0.0,>=1.0.2
Tried: [....]
pipenv lock
also fails with the following:
Could not find a version that matches grpcio<1.6dev,<2.0.0dev,==1.7.0,>=1.0.0,>=1.0.2,>=1.7.0; extra == "grpc"
Running:
-
python 3.6.3
- ~
pipenv 8.2.6
~pipenv 8.3.2
I'm having issues here as well, since google-cloud-core
requires grpcio>=1.7.0
since https://github.com/GoogleCloudPlatform/google-cloud-python/pull/4280. I solved this by reverting to google-gax==0.15.14
, which luckily is allowed since google-cloud-pubsub==0.29.0
has google-gax>=0.15.13
. It was a lot of hassle to figure something out that worked.
Thanks - at the NYTimes we have been help up by this issue as well.
On Fri, Nov 10, 2017 at 9:32 AM, Gwildor Sok [email protected] wrote:
I'm having issues here as well, since google-cloud-core requires grpcio>=1.7.0 since GoogleCloudPlatform/google-cloud-python#4280 https://github.com/GoogleCloudPlatform/google-cloud-python/pull/4280. I solved this by reverting to google-gax==0.15.14, which luckily is allowed since google-cloud-pubsub==0.29.0 has google-gax>=0.15.13. It was a lot of hassle to figure something out that worked.
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/googleapis/gax-python/issues/201#issuecomment-343488231, or mute the thread https://github.com/notifications/unsubscribe-auth/AAxl07dFJD37ni9OVjwkxxKJ2gCeINIKks5s1F5ugaJpZM4Ps8BD .
@michaelplaing sorry! The fixed version (0.15.16) should be out. :)